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:
authorBrecht Van Lommel <brecht@blender.org>2020-08-05 12:20:25 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-08-05 12:45:31 +0300
commitde53178b26d3d2580a99faaf858731f3c9e09b2f (patch)
treec7a2b0f0ce5e247bd7af1fe01d8408c6370813e9 /tests/python/cycles_render_tests.py
parent4a289081a584aec8f0b72da350e66fdcc5a8615b (diff)
Fix T78777: Cycles motion blur test differences between AVX/AVX2
This appears to be slight precision differences in the Embree implementation, simply increase the diff threshold a little for these motion blur tests.
Diffstat (limited to 'tests/python/cycles_render_tests.py')
-rw-r--r--tests/python/cycles_render_tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/python/cycles_render_tests.py b/tests/python/cycles_render_tests.py
index 79ba11fdd44..b2f0be2895f 100644
--- a/tests/python/cycles_render_tests.py
+++ b/tests/python/cycles_render_tests.py
@@ -63,6 +63,11 @@ def main():
report.set_pixelated(True)
report.set_reference_dir("cycles_renders")
report.set_compare_engines('cycles', 'eevee')
+
+ # Increase threshold for motion blur, see T78777.
+ if test_dir == 'motion_blur':
+ report.set_fail_threshold(0.032)
+
ok = report.run(test_dir, blender, get_arguments, batch=True)
sys.exit(not ok)