From 9756475ed632d868b16352f389fc276a6879b867 Mon Sep 17 00:00:00 2001 From: Lukas Stockner Date: Sat, 6 Oct 2018 22:12:28 +0200 Subject: [PATCH] Tests: Support parallel execution of render tests Previously, parallel tests would overwrite each others temporary outputs. --- tests/python/modules/render_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/modules/render_report.py b/tests/python/modules/render_report.py index ebfc58997c0..e59454a6920 100755 --- a/tests/python/modules/render_report.py +++ b/tests/python/modules/render_report.py @@ -324,7 +324,7 @@ class Report: testname = test_get_name(filepath) print_message(testname, 'SUCCESS', 'RUN') time_start = time.time() - tmp_filepath = os.path.join(self.output_dir, "tmp") + tmp_filepath = os.path.join(self.output_dir, "tmp_"+testname) error = render_cb(filepath, tmp_filepath) status = "FAIL"