Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Stockner <lukas.stockner@freenet.de>2018-10-06 23:12:28 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2018-10-06 23:12:28 +0300
commit9756475ed632d868b16352f389fc276a6879b867 (patch)
tree5a055ed1549f6a6d5d33b9888ac2ed96d2cf00e1 /tests/python/modules/render_report.py
parenta0cc7bd961ef2cd501468dce08998992a88b3bed (diff)
Tests: Support parallel execution of render tests
Previously, parallel tests would overwrite each others temporary outputs.
Diffstat (limited to 'tests/python/modules/render_report.py')
-rwxr-xr-xtests/python/modules/render_report.py2
1 files changed, 1 insertions, 1 deletions
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"