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>2022-01-13 12:41:34 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-01-13 12:41:34 +0300
commitd53738396f45e76c1e486f0f5829196ec5903072 (patch)
treefca5add87d6e13f74e492a6c9509932877ae4eb6
parent7bb572f208bb37fc7e942dcfbbbd974d514d38a8 (diff)
Tests: skip some compositor tests when WITH_LIBMV=OFF
-rw-r--r--tests/python/CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
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