From de53178b26d3d2580a99faaf858731f3c9e09b2f Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 5 Aug 2020 11:20:25 +0200 Subject: 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. --- tests/python/cycles_render_tests.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/python/cycles_render_tests.py') 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) -- cgit v1.2.3