64435eabdc
Update to v4.1.0. Also includes other major packaging changes as follows: There is a new package maintenance workflow - see README.PACKAGING for details. The sibling packages qemu-linux-user and qemu-testsuite are now created with the Build Service's MultiBuild feature. This also necessitates combining the qemu-linux-user changelog content back into qemu's. Luckily the delta there is quite small. Note that the qemu spec file is now that much busier, but added section markers should help reduce the confusion. Also qemu is being enabled for RISCV host compatibility, so some changes are related to that as well. OBS-URL: https://build.opensuse.org/request/show/730437 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=487
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From: Bruce Rogers <brogers@suse.com>
|
|
Date: Sun, 25 Nov 2018 18:01:36 -0700
|
|
Subject: tests: block-io test 130 needs some delays
|
|
|
|
I haven't figured out exactly the best solution, but we need some delays
|
|
in this test.
|
|
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
---
|
|
tests/qemu-iotests/130 | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/tests/qemu-iotests/130 b/tests/qemu-iotests/130
|
|
index 77ad2aa13a06094f26d2c8991e48..14a2b759f628e8ec0030127e9dad 100755
|
|
--- a/tests/qemu-iotests/130
|
|
+++ b/tests/qemu-iotests/130
|
|
@@ -63,6 +63,7 @@ echo
|
|
# Test that a backing file isn't written
|
|
_launch_qemu -drive id=testdisk,file="$TEST_IMG",backing.file.filename="$TEST_IMG.base"
|
|
_send_qemu_cmd $QEMU_HANDLE "commit testdisk" "(qemu)"
|
|
+sleep 5
|
|
_send_qemu_cmd $QEMU_HANDLE '' '(qemu)'
|
|
_cleanup_qemu
|
|
_img_info | _filter_img_info
|
|
@@ -72,6 +73,7 @@ _img_info | _filter_img_info
|
|
_make_test_img -F raw -b "$TEST_IMG.orig" 64M
|
|
_launch_qemu -drive id=testdisk,file="$TEST_IMG",backing.file.filename="$TEST_IMG.base",backing.driver=$IMGFMT
|
|
_send_qemu_cmd $QEMU_HANDLE "commit testdisk" "(qemu)"
|
|
+sleep 5
|
|
_send_qemu_cmd $QEMU_HANDLE '' '(qemu)'
|
|
_cleanup_qemu
|
|
_img_info | _filter_img_info
|