[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v6 3/6] iotests: Add casenotrun report to bash tests
From: |
Andrey Shinkevich |
Subject: |
[Qemu-devel] [PATCH v6 3/6] iotests: Add casenotrun report to bash tests |
Date: |
Mon, 26 Aug 2019 18:50:25 +0300 |
The new function _casenotrun() is to be invoked if a test case cannot
be run for some reason. The user will be notified by a message passed
to the function. It is the caller's responsibility to make skipped a
particular test.
Suggested-by: Kevin Wolf <address@hidden>
Signed-off-by: Andrey Shinkevich <address@hidden>
Reviewed-by: John Snow <address@hidden>
Reviewed-by: Cleber Rosa <address@hidden>
---
tests/qemu-iotests/common.rc | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc
index d51d321..3927b01 100644
--- a/tests/qemu-iotests/common.rc
+++ b/tests/qemu-iotests/common.rc
@@ -474,6 +474,15 @@ _notrun()
exit
}
+# bail out, setting up .casenotrun file
+# The function _casenotrun() is used as a notifier. It is the
+# caller's responsibility to make skipped a particular test.
+#
+_casenotrun()
+{
+ echo " [case not run] $*" >>"$OUTPUT_DIR/$seq.casenotrun"
+}
+
# just plain bail out
#
_fail()
--
1.8.3.1
- [Qemu-devel] [PATCH v6 0/6] Allow Valgrind checking all QEMU processes, Andrey Shinkevich, 2019/08/26
- [Qemu-devel] [PATCH v6 3/6] iotests: Add casenotrun report to bash tests,
Andrey Shinkevich <=
- [Qemu-devel] [PATCH v6 2/6] iotests: exclude killed processes from running under Valgrind, Andrey Shinkevich, 2019/08/26
- [Qemu-devel] [PATCH v6 6/6] iotests: extend sleeping time under Valgrind, Andrey Shinkevich, 2019/08/26
- [Qemu-devel] [PATCH v6 5/6] iotests: extended timeout under Valgrind, Andrey Shinkevich, 2019/08/26
- [Qemu-devel] [PATCH v6 4/6] iotests: Valgrind fails with nonexistent directory, Andrey Shinkevich, 2019/08/26
- [Qemu-devel] [PATCH v6 1/6] iotests: allow Valgrind checking all QEMU processes, Andrey Shinkevich, 2019/08/26