From 3703324d322e4ae8c2e061d524a37bb20e00f41b Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Wed, 10 Sep 2014 08:51:39 +0000 Subject: Remove cmdtest for builds producing a separate -kernel artifact The notion of creating a separate kernel artifact comes from before we had deployments. It was so that we could boot a system in qemu without having to extract the kernel from the rootfs. Now we can do this by copying the kernel out at deployment time, so we don't really need to do this any more. --- .../rootfs-tarball-builds-rootfs-and-kernel.script | 50 ---------------------- 1 file changed, 50 deletions(-) delete mode 100755 tests.as-root/rootfs-tarball-builds-rootfs-and-kernel.script diff --git a/tests.as-root/rootfs-tarball-builds-rootfs-and-kernel.script b/tests.as-root/rootfs-tarball-builds-rootfs-and-kernel.script deleted file mode 100755 index ca1b1302..00000000 --- a/tests.as-root/rootfs-tarball-builds-rootfs-and-kernel.script +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# Copyright (C) 2011, 2012, 2013, 2014 Codethink Limited -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; version 2 of the License. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - - -set -eu - -# Disable test on versions of Python before 2.7. -. "$SRCDIR/scripts/python-check" - -cache="$DATADIR/cache/artifacts" - -arch=$("$SRCDIR/scripts/test-morph" print-architecture) - -cd "$DATADIR/kernel-repo" -cat <linux.morph -name: linux -kind: chunk -install-commands: - - mkdir -p "\$DESTDIR/boot" - - touch "\$DESTDIR/boot/zImage" -EOF -git add linux.morph -git commit --quiet -m 'Make the kernel create a dummy zImage' - -"$SRCDIR/scripts/test-morph" \ - build-morphology test:morphs master linux-system > /dev/null - -for suffix in kernel rootfs -do - if [ ! -e "$cache"/*system.linux-system-$suffix ] - then - echo "can't find $cache/*system.linux-system-$suffix" 1>&2 - find "$cache" 1>&2 - exit 1 - fi -done -- cgit v1.2.1