[Bf-blender-cvs] [d53738396f4] master: Tests: skip some compositor tests when WITH_LIBMV=OFF

Brecht Van Lommel noreply at git.blender.org
Thu Jan 13 10:50:44 CET 2022


Commit: d53738396f45e76c1e486f0f5829196ec5903072
Author: Brecht Van Lommel
Date:   Thu Jan 13 10:41:34 2022 +0100
Branches: master
https://developer.blender.org/rBd53738396f45e76c1e486f0f5829196ec5903072

Tests: skip some compositor tests when WITH_LIBMV=OFF

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

M	tests/python/CMakeLists.txt

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

diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index 4edacf12e6a..f3136d6c649 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -740,16 +740,18 @@ if(WITH_COMPOSITOR)
   set(compositor_tests
     color
     converter
-    distort
     filter
     input
-    matte
     output
     vector
 
     multiple_node_setups
   )
 
+  if(WITH_LIBMV)
+    list(APPEND compositor_tests distort matte)
+  endif()
+
   foreach(comp_test ${compositor_tests})
     add_python_test(
       compositor_${comp_test}_test



More information about the Bf-blender-cvs mailing list