]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
fixup test suite
authorHarald Hoyer <harald@redhat.com>
Tue, 9 Jun 2015 11:34:57 +0000 (13:34 +0200)
committerHarald Hoyer <harald@redhat.com>
Tue, 9 Jun 2015 11:36:46 +0000 (13:36 +0200)
- qemu wants to have "format=raw"
- "-kernel" is obsolete, because run-qemu picks the right path

16 files changed:
test/TEST-01-BASIC/test.sh
test/TEST-02-SYSTEMD/test.sh
test/TEST-03-USR-MOUNT/test.sh
test/TEST-04-FULL-SYSTEMD/test.sh
test/TEST-10-RAID/test.sh
test/TEST-11-LVM/test.sh
test/TEST-12-RAID-DEG/test.sh
test/TEST-13-ENC-RAID-LVM/test.sh
test/TEST-14-IMSM/test.sh
test/TEST-15-BTRFSRAID/test.sh
test/TEST-16-DMSQUASH/test.sh
test/TEST-17-LVM-THIN/test.sh
test/TEST-20-NFS/test.sh
test/TEST-30-ISCSI/test.sh
test/TEST-40-NBD/test.sh
test/TEST-50-MULTINIC/test.sh

index d1062ee880d86cf2ec12d917c8a5292da31328f2..4897cc9e8e7550b7e370e81ff15c1a35b76d0375 100755 (executable)
@@ -9,10 +9,10 @@ KVERSION=${KVERSION-$(uname -r)}
 test_run() {
     dd if=/dev/zero of=$TESTDIR/result bs=1M count=1
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext3 \
-       -hdb $TESTDIR/result \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext3 \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/result \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -watchdog i6300esb -watchdog-action poweroff \
        -append "root=LABEL=dracut rw systemd.log_level=debug systemd.log_target=console rd.retry=3 rd.debug console=ttyS0,115200n81 $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing || return 1
@@ -78,9 +78,8 @@ test_setup() {
     # Invoke KVM and/or QEMU to actually create the target filesystem.
 
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext3 \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext3 \
        -m 256M -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
        -append "root=/dev/dracut/root rw rootfstype=ext3 quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.ext3 || return 1
index bb18d8eb084c2241223328bb52a44ebbeeb7a171..3cc5d0aeb775b3c9f888dbbd61608a33feb0b09c 100755 (executable)
@@ -7,9 +7,9 @@ KVERSION="${KVERSION-$(uname -r)}"
 #DEBUGFAIL="rd.shell"
 test_run() {
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext3 \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext3 \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "root=LABEL=dracut rw loglevel=77 systemd.log_level=debug systemd.log_target=console rd.retry=3 rd.info console=ttyS0,115200n81 selinux=0 rd.debug init=/sbin/init $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
     grep -F -m 1 -q dracut-root-block-success $TESTDIR/root.ext3 || return 1
@@ -75,9 +75,8 @@ test_setup() {
     # Invoke KVM and/or QEMU to actually create the target filesystem.
 
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext3 \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext3 \
        -m 256M -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
        -append "root=/dev/fakeroot rw rootfstype=ext3 quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.ext3 || return 1
index 0a10b87b0338b7dd3fa309d5ceab91555d75fb29..cccec31bf118fcef8c78fd9e13303fc9e3af797c 100755 (executable)
@@ -15,11 +15,11 @@ client_run() {
 
     dd if=/dev/zero of=$TESTDIR/result bs=1M count=1
     $testdir/run-qemu \
-       -hda $TESTDIR/root.btrfs \
-       -hdb $TESTDIR/usr.btrfs \
-       -hdc $TESTDIR/result \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.btrfs \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/usr.btrfs \
+       -drive format=raw,index=2,media=disk,file=$TESTDIR/result \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -watchdog i6300esb -watchdog-action poweroff \
        -append "root=LABEL=dracut $client_opts quiet rd.retry=3 rd.info console=ttyS0,115200n81 selinux=0 rd.debug $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
@@ -112,10 +112,9 @@ test_setup() {
     rm -rf -- $TESTDIR/overlay
 
     $testdir/run-qemu \
-       -hda $TESTDIR/root.btrfs \
-       -hdb $TESTDIR/usr.btrfs \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.btrfs \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/usr.btrfs \
        -m 256M -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
        -append "root=/dev/dracut/root rw rootfstype=btrfs quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.btrfs || return 1
index 0629bc2373fec1e4add01c393f9419a5b4a646d9..6e05f0da7016a16ca1fabbe32b8919376c79b4e1 100755 (executable)
@@ -17,9 +17,9 @@ client_run() {
 
     dd if=/dev/zero of=$TESTDIR/result bs=1M count=1
     $testdir/run-qemu \
-       -hda $TESTDIR/root.btrfs \
-       -hdb $TESTDIR/usr.btrfs \
-       -hdc $TESTDIR/result \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.btrfs \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/usr.btrfs \
+       -drive format=raw,index=2,media=disk,file=$TESTDIR/result \
        -m 256M -smp 2 -nographic \
        -net none \
        -append "root=LABEL=dracut $client_opts rd.retry=3 console=ttyS0,115200n81 selinux=0 $DEBUGOUT $DEBUGFAIL" \
@@ -244,8 +244,8 @@ EOF
     rm -rf -- $TESTDIR/overlay
 
     $testdir/run-qemu \
-       -hda $TESTDIR/root.btrfs \
-       -hdb $TESTDIR/usr.btrfs \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.btrfs \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/usr.btrfs \
        -m 256M -smp 2 -nographic -net none \
        -append "root=/dev/fakeroot rw rootfstype=btrfs quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
index a1c7bff07a729e5fcc2abc21fbe4b0abe89cb916..e7a1131be6c0f908f37df1e522096aede1e2d464 100755 (executable)
@@ -9,9 +9,9 @@ KVERSION=${KVERSION-$(uname -r)}
 test_run() {
     DISKIMAGE=$TESTDIR/TEST-10-RAID-root.img
     $testdir/run-qemu \
-       -hda $DISKIMAGE \
+       -drive format=raw,index=0,media=disk,file=$DISKIMAGE \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "root=/dev/dracut/root rd.auto rw rd.retry=10 console=ttyS0,115200n81 selinux=0 $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
     grep -F -m 1 -q dracut-root-block-success $DISKIMAGE || return 1
@@ -75,9 +75,8 @@ test_setup() {
     rm -rf -- $TESTDIR/overlay
     # Invoke KVM and/or QEMU to actually create the target filesystem.
     $testdir/run-qemu \
-       -hda $DISKIMAGE \
+       -drive format=raw,index=0,media=disk,file=$DISKIMAGE \
        -m 256M -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
        -append "root=/dev/cannotreach rw rootfstype=ext2 console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $DISKIMAGE || return 1
index 85b2f9db67cff5070b9c211ba67fbad98a9233d4..0002455aa5be6f9f7c92d85c402debd029cc37ad 100755 (executable)
@@ -8,9 +8,9 @@ KVERSION=${KVERSION-$(uname -r)}
 
 test_run() {
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "root=/dev/dracut/root rw rd.auto=1 quiet rd.retry=3 rd.info console=ttyS0,115200n81 selinux=0 rd.debug  $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
     grep -F -m 1 -q dracut-root-block-success $TESTDIR/root.ext2 || return 1
@@ -71,8 +71,7 @@ test_setup() {
        -f $TESTDIR/initramfs.makeroot $KVERSION || return 1
     rm -rf -- $TESTDIR/overlay
     # Invoke KVM and/or QEMU to actually create the target filesystem.
-    $testdir/run-qemu -hda $TESTDIR/root.ext2 -m 256M -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
+    $testdir/run-qemu -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 -m 256M -smp 2 -nographic -net none \
        -append "root=/dev/fakeroot rw rootfstype=ext2 quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.ext2 || return 1
index f0698a52d583e919abbb0554deb69a8772e31221..6c7b8b3279ea8dcc1defef46937adaff3289d3f3 100755 (executable)
@@ -15,10 +15,10 @@ client_run() {
     cp --sparse=always --reflink=auto $TESTDIR/disk3.img $TESTDIR/disk3.img.new
 
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 -m 256M -nographic  -smp 2 \
-       -hdc $TESTDIR/disk2.img.new \
-       -hdd $TESTDIR/disk3.img.new \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 -m 256M -nographic  -smp 2 \
+       -drive format=raw,index=2,media=disk,file=$TESTDIR/disk2.img.new \
+       -drive format=raw,index=3,media=disk,file=$TESTDIR/disk3.img.new \
+       -net none \
        -append "$* root=LABEL=root rw rd.retry=10 rd.info console=ttyS0,115200n81 selinux=0 rd.debug $DEBUGFAIL " \
        -initrd $TESTDIR/initramfs.testing
     if ! grep -F -m 1 -q dracut-root-block-success $TESTDIR/root.ext2; then
@@ -112,12 +112,11 @@ test_setup() {
     rm -rf -- $TESTDIR/overlay
     # Invoke KVM and/or QEMU to actually create the target filesystem.
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 \
-       -hdb $TESTDIR/disk1.img \
-       -hdc $TESTDIR/disk2.img \
-       -hdd $TESTDIR/disk3.img \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/disk1.img \
+       -drive format=raw,index=2,media=disk,file=$TESTDIR/disk2.img \
+       -drive format=raw,index=3,media=disk,file=$TESTDIR/disk3.img \
        -m 256M -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
        -append "root=/dev/fakeroot rw rootfstype=ext2 quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
 
index 2726cba2d53659d280f51386d33d37b779a83275..14d8196684b116b982735306b3594ff54bcfdab7 100755 (executable)
@@ -15,10 +15,10 @@ test_run() {
 
     echo "CLIENT TEST START: $LUKSARGS"
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 \
-       -hdb $TESTDIR/check-success.img \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/check-success.img \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "root=/dev/dracut/root rw rd.auto rd.retry=20 console=ttyS0,115200n81 selinux=0 rd.debug rootwait $LUKSARGS $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
     grep -F -m 1 -q dracut-root-block-success $TESTDIR/check-success.img || return 1
@@ -28,10 +28,10 @@ test_run() {
 
     echo "CLIENT TEST START: Any LUKS"
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 \
-       -hdb $TESTDIR/check-success.img \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/check-success.img \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "root=/dev/dracut/root rw quiet rd.auto rd.retry=20 rd.info console=ttyS0,115200n81 selinux=0 rd.debug  $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
     grep -F -m 1 -q dracut-root-block-success $TESTDIR/check-success.img || return 1
@@ -41,10 +41,10 @@ test_run() {
 
     echo "CLIENT TEST START: Wrong LUKS UUID"
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 \
-       -hdb $TESTDIR/check-success.img \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/check-success.img \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "root=/dev/dracut/root rw quiet rd.auto rd.retry=10 rd.info console=ttyS0,115200n81 selinux=0 rd.debug  $DEBUGFAIL rd.luks.uuid=failme" \
        -initrd $TESTDIR/initramfs.testing
     grep -F -m 1 -q dracut-root-block-success $TESTDIR/check-success.img && return 1
@@ -108,8 +108,7 @@ test_setup() {
        -f $TESTDIR/initramfs.makeroot $KVERSION || return 1
     rm -rf -- $TESTDIR/overlay
     # Invoke KVM and/or QEMU to actually create the target filesystem.
-    $testdir/run-qemu -hda $TESTDIR/root.ext2 -m 256M -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
+    $testdir/run-qemu -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 -m 256M -smp 2 -nographic -net none \
        -append "root=/dev/fakeroot rw rootfstype=ext2 quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.ext2 || return 1
index 67ac87e3e7dae797d0f96718be84b380534cc19b..291f3c5cec8ed10f7b6adc508902aaafac389dc4 100755 (executable)
@@ -10,11 +10,11 @@ KVERSION=${KVERSION-$(uname -r)}
 client_run() {
     echo "CLIENT TEST START: $@"
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 \
-       -hdb $TESTDIR/disk1 \
-       -hdc $TESTDIR/disk2 \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/disk1 \
+       -drive format=raw,index=2,media=disk,file=$TESTDIR/disk2 \
        -m 256M -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "$* root=LABEL=root rw debug rd.retry=5 rd.debug console=ttyS0,115200n81 selinux=0 rd.info $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
     if ! grep -F -m 1 -q dracut-root-block-success $TESTDIR/root.ext2; then
@@ -100,11 +100,10 @@ test_setup() {
     rm -rf -- $TESTDIR/overlay
     # Invoke KVM and/or QEMU to actually create the target filesystem.
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 \
-       -hdb $TESTDIR/disk1 \
-       -hdc $TESTDIR/disk2 \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 \
+       -drive format=raw,index=1,media=disk,file=$TESTDIR/disk1 \
+       -drive format=raw,index=2,media=disk,file=$TESTDIR/disk2 \
        -m 256M -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
        -append "root=/dev/dracut/root rw rootfstype=ext2 quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.ext2 || return 1
index 48c678872b025fe4b0a0a892db40ac0fc07a1596..7f99d8bd03d4f9d8cd40796512f4ac61e4fd4862 100755 (executable)
@@ -8,9 +8,9 @@ KVERSION=${KVERSION-$(uname -r)}
 test_run() {
     DISKIMAGE=$TESTDIR/TEST-15-BTRFSRAID-root.img
     $testdir/run-qemu \
-       -hda $DISKIMAGE \
+       -drive format=raw,index=0,media=disk,file=$DISKIMAGE \
        -m 256M  -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "root=LABEL=root rw rd.retry=3 rd.info console=ttyS0,115200n81 selinux=0 $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
     dd if=$DISKIMAGE bs=512 count=4 skip=2048 | grep -F -m 1 -q dracut-root-block-success $DISKIMAGE || return 1
@@ -76,9 +76,8 @@ test_setup() {
 
     # Invoke KVM and/or QEMU to actually create the target filesystem.
     $testdir/run-qemu \
-       -hda $DISKIMAGE \
+       -drive format=raw,index=0,media=disk,file=$DISKIMAGE \
        -m 256M  -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
        -append "root=/dev/fakeroot rw quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
 
index 2922d66d069ebf8a5db54258225ce389860d699e..eb0044c1d17d85cc868e8edbf0346629d40ffb5b 100755 (executable)
@@ -18,9 +18,9 @@ test_run() {
     "$testdir"/run-qemu \
        -boot order=d \
        -cdrom "$TESTDIR"/livecd.iso \
-       -hda "$TESTDIR"/root.img \
+       -drive format=raw,index=0,media=disk,file="$TESTDIR"/root.img \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-"$KVERSION" \
+       -net none \
        -append "root=live:CDLABEL=LiveCD live rw quiet rd.retry=3 rd.info console=ttyS0,115200n81 selinux=0 rd.debug $DEBUGFAIL" \
        -initrd "$TESTDIR"/initramfs.testing
     grep -F -m 1 -q dracut-root-block-success -- "$TESTDIR"/root.img || return 1
index cacd47d6d2e42b23597f0cbd764188502e8d3491..811a66cc46231266fd4e3c9efbb579b7c824250a 100755 (executable)
@@ -8,9 +8,9 @@ KVERSION=${KVERSION-$(uname -r)}
 
 test_run() {
     $testdir/run-qemu \
-       -hda $TESTDIR/root.ext2 \
+       -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 \
        -m 256M -smp 2 -nographic \
-       -net none -kernel /boot/vmlinuz-$KVERSION \
+       -net none \
        -append "root=/dev/dracut/root rw rd.auto=1 quiet rd.retry=3 rd.info console=ttyS0,115200n81 selinux=0 rd.debug  $DEBUGFAIL" \
        -initrd $TESTDIR/initramfs.testing
     grep -F -m 1 -q dracut-root-block-success $TESTDIR/root.ext2 || return 1
@@ -71,8 +71,7 @@ test_setup() {
        -f $TESTDIR/initramfs.makeroot $KVERSION || return 1
     rm -rf -- $TESTDIR/overlay
     # Invoke KVM and/or QEMU to actually create the target filesystem.
-    $testdir/run-qemu -hda $TESTDIR/root.ext2 -m 256M -smp 2 -nographic -net none \
-       -kernel "/boot/vmlinuz-$kernel" \
+    $testdir/run-qemu -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext2 -m 256M -smp 2 -nographic -net none \
        -append "root=/dev/fakeroot rw rootfstype=ext2 quiet console=ttyS0,115200n81 selinux=0" \
        -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/root.ext2 || return 1
index 1f37c73af2145e44bf6a2280f47b87d53a0000c7..04616ef7787c5746469cd25f87d7a260337ca797 100755 (executable)
@@ -13,14 +13,13 @@ run_server() {
 
     fsck -a $TESTDIR/server.ext3 || return 1
     $testdir/run-qemu \
-        -hda $TESTDIR/server.ext3 \
+        -drive format=raw,index=0,media=disk,file=$TESTDIR/server.ext3 \
         -m 256M -smp 2 \
         -display none \
         -net nic,macaddr=52:54:00:12:34:56,model=e1000 \
         -net socket,listen=127.0.0.1:12320 \
         -serial ${SERIAL:-null} \
         -watchdog i6300esb -watchdog-action poweroff \
-        -kernel /boot/vmlinuz-$KVERSION \
         -append "rd.debug loglevel=77 root=/dev/sda rootfstype=ext3 rw console=ttyS0,115200n81 selinux=0" \
         -initrd $TESTDIR/initramfs.server \
         -pidfile $TESTDIR/server.pid -daemonize || return 1
@@ -50,11 +49,10 @@ client_test() {
     fi
 
     $testdir/run-qemu \
-        -hda $TESTDIR/client.img \
+        -drive format=raw,index=0,media=disk,file=$TESTDIR/client.img \
         -m 256M -smp 2 -nographic \
         -net nic,macaddr=$mac,model=e1000 \
         -net socket,connect=127.0.0.1:12320 \
-        -kernel /boot/vmlinuz-$KVERSION \
         -watchdog i6300esb -watchdog-action poweroff \
         -append "$cmdline $DEBUGFAIL rd.debug rd.retry=10 rd.info quiet  ro console=ttyS0,115200n81 selinux=0" \
         -initrd $TESTDIR/initramfs.testing
index 31677daad7005304591fd85e361fa94e33ba9d96..2c082fed994d9ce5bc80bbdc4482e1d60e4e1d3f 100755 (executable)
@@ -12,16 +12,15 @@ run_server() {
     echo "iSCSI TEST SETUP: Starting DHCP/iSCSI server"
 
     $testdir/run-qemu \
-        -hda $TESTDIR/server.ext3 \
-        -hdb $TESTDIR/root.ext3 \
-        -hdc $TESTDIR/iscsidisk2.img \
-        -hdd $TESTDIR/iscsidisk3.img \
+        -drive format=raw,index=0,media=disk,file=$TESTDIR/server.ext3 \
+        -drive format=raw,index=1,media=disk,file=$TESTDIR/root.ext3 \
+        -drive format=raw,index=2,media=disk,file=$TESTDIR/iscsidisk2.img \
+        -drive format=raw,index=3,media=disk,file=$TESTDIR/iscsidisk3.img \
         -m 256M  -smp 2 \
         -display none \
         -serial $SERIAL \
         -net nic,macaddr=52:54:00:12:34:56,model=e1000 \
         -net socket,listen=127.0.0.1:12330 \
-        -kernel /boot/vmlinuz-$KVERSION \
         -append "root=/dev/sda rootfstype=ext3 rw rd.debug loglevel=77 console=ttyS0,115200n81 selinux=0" \
         -initrd $TESTDIR/initramfs.server \
         -pidfile $TESTDIR/server.pid -daemonize || return 1
@@ -41,11 +40,10 @@ run_client() {
     dd if=/dev/zero of=$TESTDIR/client.img bs=1M count=1
 
     $testdir/run-qemu \
-        -hda $TESTDIR/client.img \
+        -drive format=raw,index=0,media=disk,file=$TESTDIR/client.img \
         -m 256M -smp 2 -nographic \
         -net nic,macaddr=52:54:00:12:34:00,model=e1000 \
         -net socket,connect=127.0.0.1:12330 \
-        -kernel /boot/vmlinuz-$KVERSION \
         -append "$* rw quiet rd.auto rd.retry=5 rd.debug rd.info  console=ttyS0,115200n81 selinux=0 $DEBUGFAIL" \
         -initrd $TESTDIR/initramfs.testing
     if ! grep -F -m 1 -q iscsi-OK $TESTDIR/client.img; then
@@ -155,12 +153,11 @@ test_setup() {
     fi
     # Invoke KVM and/or QEMU to actually create the target filesystem.
     $testdir/run-qemu \
-        -hda $TESTDIR/root.ext3 \
-        -hdb $TESTDIR/client.img \
-        -hdc $TESTDIR/iscsidisk2.img \
-        -hdd $TESTDIR/iscsidisk3.img \
+        -drive format=raw,index=0,media=disk,file=$TESTDIR/root.ext3 \
+        -drive format=raw,index=1,media=disk,file=$TESTDIR/client.img \
+        -drive format=raw,index=2,media=disk,file=$TESTDIR/iscsidisk2.img \
+        -drive format=raw,index=3,media=disk,file=$TESTDIR/iscsidisk3.img \
         -smp 2 -m 256M -nographic -net none \
-        -kernel "/boot/vmlinuz-$kernel" \
         -append "root=/dev/fakeroot rw rootfstype=ext3 quiet console=ttyS0,115200n81 selinux=0" \
         -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/client.img || return 1
index 4a5fa8c15aa30f83b3998070b3c5fd683e246557..aa4b46bcaa9de17c4a5fe03f176fb0fcbe897872 100755 (executable)
@@ -14,15 +14,14 @@ run_server() {
     echo "NBD TEST SETUP: Starting DHCP/NBD server"
 
     $testdir/run-qemu \
-        -hda $TESTDIR/server.ext2 \
-        -hdb $TESTDIR/nbd.ext2 \
-        -hdc $TESTDIR/encrypted.ext2 \
+        -drive format=raw,index=0,media=disk,file=$TESTDIR/server.ext2 \
+        -drive format=raw,index=1,media=disk,file=$TESTDIR/nbd.ext2 \
+        -drive format=raw,index=2,media=disk,file=$TESTDIR/encrypted.ext2 \
         -m 256M -smp 2 \
         -display none \
         -net nic,macaddr=52:54:00:12:34:56,model=e1000 \
         -net socket,listen=127.0.0.1:12340 \
         -serial $SERIAL \
-        -kernel /boot/vmlinuz-$KVERSION \
         -append "root=/dev/sda rootfstype=ext2 rw quiet console=ttyS0,115200n81 selinux=0" \
         -initrd $TESTDIR/initramfs.server -pidfile $TESTDIR/server.pid -daemonize || return 1
     sudo chmod 644 $TESTDIR/server.pid || return 1
@@ -54,12 +53,11 @@ client_test() {
     fi
 
     $testdir/run-qemu \
-        -hda $TESTDIR/flag.img \
+        -drive format=raw,index=0,media=disk,file=$TESTDIR/flag.img \
         -m 512M -smp 2 \
         -nographic \
         -net nic,macaddr=$mac,model=e1000 \
         -net socket,connect=127.0.0.1:12340 \
-        -kernel /boot/vmlinuz-$KVERSION \
         -append "$cmdline $DEBUGFAIL rd.auto rd.info rd.retry=10 ro console=ttyS0,115200n81  selinux=0  " \
         -initrd $TESTDIR/initramfs.testing
 
@@ -246,11 +244,10 @@ make_encrypted_root() {
 
     # Invoke KVM and/or QEMU to actually create the target filesystem.
     $testdir/run-qemu \
-        -hda $TESTDIR/flag.img \
-        -hdb $TESTDIR/encrypted.ext2 \
+        -drive format=raw,index=0,media=disk,file=$TESTDIR/flag.img \
+        -drive format=raw,index=1,media=disk,file=$TESTDIR/encrypted.ext2 \
         -m 256M -smp 2\
         -nographic -net none \
-        -kernel "/boot/vmlinuz-$kernel" \
         -append "root=/dev/fakeroot rw quiet console=ttyS0,115200n81 selinux=0" \
         -initrd $TESTDIR/initramfs.makeroot  || return 1
     grep -F -m 1 -q dracut-root-block-created $TESTDIR/flag.img || return 1
index 48172272772accd2bdb8e24ab5578a9a461d2257..b292cc068ace22fd7e656a75893c077878ca599e 100755 (executable)
@@ -13,14 +13,13 @@ run_server() {
 
     fsck -a "$TESTDIR"/server.ext3 || return 1
     $testdir/run-qemu \
-        -hda "$TESTDIR"/server.ext3 \
+        -drive format=raw,index=0,media=disk,file="$TESTDIR"/server.ext3 \
         -m 512M -smp 2 \
         -display none \
         -net socket,listen=127.0.0.1:12350 \
         -net nic,macaddr=52:54:01:12:34:56,model=e1000 \
         ${SERIAL:+-serial "$SERIAL"} \
         -watchdog i6300esb -watchdog-action poweroff \
-        -kernel /boot/vmlinuz-"$KVERSION" \
         -append "loglevel=7 root=/dev/sda rootfstype=ext3 rw console=ttyS0,115200n81 selinux=0" \
         -initrd "$TESTDIR"/initramfs.server \
         -pidfile "$TESTDIR"/server.pid -daemonize || return 1
@@ -49,13 +48,12 @@ client_test() {
         return 1
     fi
 
-    $testdir/run-qemu -hda "$TESTDIR"/client.img -m 512M -smp 2 -nographic \
+    $testdir/run-qemu -drive format=raw,index=0,media=disk,file="$TESTDIR"/client.img -m 512M -smp 2 -nographic \
         -net socket,connect=127.0.0.1:12350 \
         -net nic,macaddr=52:54:00:12:34:$mac1,model=e1000 \
         -net nic,macaddr=52:54:00:12:34:$mac2,model=e1000 \
         -net nic,macaddr=52:54:00:12:34:$mac3,model=e1000 \
         -watchdog i6300esb -watchdog-action poweroff \
-        -kernel /boot/vmlinuz-"$KVERSION" \
         -append "$cmdline $DEBUGFAIL rd.retry=5 ro console=ttyS0,115200n81 selinux=0 init=/sbin/init rd.debug systemd.log_target=console loglevel=7" \
         -initrd "$TESTDIR"/initramfs.testing