[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 05/10] Introduce cirros-pvgrub2-pv test
This test verifies booting the cirros image using pvgrub2 Signed-off-by: Géza Gémes <geza.gemes@xxxxxxxxx> --- tests/cirros-pvgrub2-pv | 33 +++++++++++++++++++++++++++++++++ tests/series | 1 + 2 files changed, 34 insertions(+) create mode 100644 tests/cirros-pvgrub2-pv diff --git a/tests/cirros-pvgrub2-pv b/tests/cirros-pvgrub2-pv new file mode 100644 index 0000000..4994ea9 --- /dev/null +++ b/tests/cirros-pvgrub2-pv @@ -0,0 +1,33 @@ +#!/usr/bin/env bash + +set -e + +function cirros-pvgrub2-pv-cleanup() { + tear_down_cirros_test $testdir +} + +function cirros-pvgrub2-pv-test() { + download_cirros_components + testdir=`mktemp -d` + cp $CIRROS_DOWNLOADS/$CIRROS_DISK_FILE $testdir + # Need to install grub.cfg + local cirros_disk_loop=`$SUDO $BASEDIR/scripts/lopartsetup $testdir/$CIRROS_DISK_FILE | head -1 | cut -d ":" -f 1` + local cirros_disk_mntpt=`mktemp -d` + $SUDO mount $cirros_disk_loop $cirros_disk_mntpt + cirros_grub_cfg $cirros_disk_mntpt + $SUDO umount $cirros_disk_mntpt + $SUDO rmdir $cirros_disk_mntpt + $SUDO losetup -d $cirros_disk_loop + cat >$testdir/cirros-pvgrub2-pv.cfg <<EOF +name = "raisin-test" +memory = 128 +vcpus = 2 +kernel = "$PVGRUB" +disk = [ '${testdir}/${CIRROS_DISK_FILE},raw,xvda,rw' ] +extra = "$CIRROS_GRUB_CFG" +vif = [ 'bridge=xenbr1' ] +EOF + + $SUDO xl create $testdir/cirros-pvgrub2-pv.cfg + check_guest_alive +} diff --git a/tests/series b/tests/series index 372fafb..1fec245 100644 --- a/tests/series +++ b/tests/series @@ -3,3 +3,4 @@ busybox-hvm busybox-hvm-migrate cirros-separate-kernel-pv cirros-pygrub-pv +cirros-pvgrub2-pv -- 2.7.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |