[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invoca
From: |
Thomas Huth |
Subject: |
[PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invocations |
Date: |
Wed, 9 Feb 2022 11:15:23 +0100 |
If multiple tests run in parallel, they must use unique file
names for the test output.
Suggested-by: Hanna Reitz <hreitz@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
tests/qemu-iotests/testrunner.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qemu-iotests/testrunner.py b/tests/qemu-iotests/testrunner.py
index 0eace147b8..9d20f51bb1 100644
--- a/tests/qemu-iotests/testrunner.py
+++ b/tests/qemu-iotests/testrunner.py
@@ -259,7 +259,7 @@ def do_run_test(self, test: str, mp: bool) -> TestResult:
"""
f_test = Path(test)
- f_bad = Path(f_test.name + '.out.bad')
+ f_bad = Path(f'{os.getpid()}-{f_test.name}.out.bad')
f_notrun = Path(f_test.name + '.notrun')
f_casenotrun = Path(f_test.name + '.casenotrun')
f_reference = Path(self.find_reference(test))
--
2.27.0
- [PATCH v2 0/8] Improve integration of iotests in the meson test harness, Thomas Huth, 2022/02/09
- [PATCH v2 4/8] tests/qemu-iotests: Allow to run "./check -n" from the source directory, too, Thomas Huth, 2022/02/09
- [PATCH v2 3/8] tests/qemu-iotests/meson.build: Improve the indentation, Thomas Huth, 2022/02/09
- [PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invocations,
Thomas Huth <=
- Re: [PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invocations, Kevin Wolf, 2022/02/11
- Re: [PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invocations, Vladimir Sementsov-Ogievskiy, 2022/02/11
- Re: [PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invocations, Thomas Huth, 2022/02/11
- Re: [PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invocations, Kevin Wolf, 2022/02/11
- Re: [PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invocations, Hanna Reitz, 2022/02/11
- Re: [PATCH v2 1/8] tests/qemu-iotests/testrunner: Allow parallel test invocations, Kevin Wolf, 2022/02/11
[PATCH v2 2/8] tests/qemu-iotests: Improve the check for GNU sed, Thomas Huth, 2022/02/09
[PATCH v2 6/8] tests: Do not treat the iotests as separate meson test target anymore, Thomas Huth, 2022/02/09
[PATCH v2 7/8] tests/qemu-iotests/testrunner: Print diff to stderr in TAP mode, Thomas Huth, 2022/02/09