summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndrey Shinkevich <andrey.shinkevich@virtuozzo.com>2019-09-04 12:11:24 +0300
committerKevin Wolf <kwolf@redhat.com>2019-09-13 12:18:37 +0200
commit4e08bee46709f07e597431a75aa5efec9866bf9f (patch)
tree27efa58ac553b3f45b0b5df38c72dbb72a6463af
parentfbd1c378385f5405f9d6178e4662bf8744653e8d (diff)
downloadfocaccia-qemu-4e08bee46709f07e597431a75aa5efec9866bf9f.tar.gz
focaccia-qemu-4e08bee46709f07e597431a75aa5efec9866bf9f.zip
iotests: extend sleeping time under Valgrind
To synchronize the time when QEMU is running longer under the Valgrind,
increase the sleeping time in the test 247.

Signed-off-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rwxr-xr-xtests/qemu-iotests/2476
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/qemu-iotests/247 b/tests/qemu-iotests/247
index 546a794d3d..c853b73819 100755
--- a/tests/qemu-iotests/247
+++ b/tests/qemu-iotests/247
@@ -57,7 +57,11 @@ TEST_IMG="$TEST_IMG.4" _make_test_img $size
 {"execute":"block-commit",
  "arguments":{"device":"format-4", "top-node": "format-2", "base-node":"format-0", "job-id":"job0"}}
 EOF
-sleep 1
+if [ "${VALGRIND_QEMU}" == "y" ]; then
+    sleep 10
+else
+    sleep 1
+fi
 echo '{"execute":"quit"}'
 ) | $QEMU -qmp stdio -nographic -nodefaults \
     -blockdev file,node-name=file-0,filename=$TEST_IMG.0,auto-read-only=on \