[Bf-blender-cvs] [002f5b826c7] master: Cycles: Disable fluid motion blur regression test

Sergey Sharybin noreply at git.blender.org
Thu Jan 9 11:41:33 CET 2020


Commit: 002f5b826c7c0b11a4f94de6ce6a88cf849c05c5
Author: Sergey Sharybin
Date:   Thu Jan 9 11:40:10 2020 +0100
Branches: master
https://developer.blender.org/rB002f5b826c7c0b11a4f94de6ce6a88cf849c05c5

Cycles: Disable fluid motion blur regression test

There are deeper issues than just updating the regression test .blend file
and the solution is dragging for far too long.

Considering this a known broken feature, which will either be fixed next week
or completely removed from the interface for the coming release.

===================================================================

M	tests/python/modules/render_report.py

===================================================================

diff --git a/tests/python/modules/render_report.py b/tests/python/modules/render_report.py
index 58eae834879..ea72afa7fdc 100755
--- a/tests/python/modules/render_report.py
+++ b/tests/python/modules/render_report.py
@@ -29,6 +29,11 @@ class COLORS_DUMMY:
 COLORS = COLORS_DUMMY
 
 
+# NOTE: Keep everything lowercase.
+BLACKLIST = (
+  'fluid_motion_blur.blend',
+)
+
 def print_message(message, type=None, status=''):
     if type == 'SUCCESS':
         print(COLORS.GREEN, end="")
@@ -55,7 +60,10 @@ def print_message(message, type=None, status=''):
 def blend_list(dirpath):
     for root, dirs, files in os.walk(dirpath):
         for filename in files:
-            if filename.lower().endswith(".blend"):
+            filename_lower = filename.lower()
+            if filename_lower in BLACKLIST:
+                continue
+            if filename_lower.endswith(".blend"):
                 filepath = os.path.join(root, filename)
                 yield filepath



More information about the Bf-blender-cvs mailing list