[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v5 6/6] iotests: extend sleeping time under Valgrind
From: |
Andrey Shinkevich |
Subject: |
[Qemu-devel] [PATCH v5 6/6] iotests: extend sleeping time under Valgrind |
Date: |
Fri, 19 Jul 2019 19:30:16 +0300 |
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 <address@hidden>
Reviewed-by: Vladimir Sementsov-Ogievskiy <address@hidden>
---
tests/qemu-iotests/247 | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tests/qemu-iotests/247 b/tests/qemu-iotests/247
index 546a794..c853b73 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 \
--
1.8.3.1
- [Qemu-devel] [PATCH v5 0/6] Allow Valgrind checking all QEMU processes, Andrey Shinkevich, 2019/07/19
- [Qemu-devel] [PATCH v5 2/6] iotests: exclude killed processes from running under Valgrind, Andrey Shinkevich, 2019/07/19
- [Qemu-devel] [PATCH v5 1/6] iotests: allow Valgrind checking all QEMU processes, Andrey Shinkevich, 2019/07/19
- [Qemu-devel] [PATCH v5 4/6] iotests: Valgrind fails with nonexistent directory, Andrey Shinkevich, 2019/07/19
- [Qemu-devel] [PATCH v5 6/6] iotests: extend sleeping time under Valgrind,
Andrey Shinkevich <=
- [Qemu-devel] [PATCH v5 3/6] iotests: Add casenotrun report to bash tests, Andrey Shinkevich, 2019/07/19
- [Qemu-devel] [PATCH v5 5/6] iotests: extended timeout under Valgrind, Andrey Shinkevich, 2019/07/19