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:
authorRichard Antalik <ISS>2020-11-01 23:33:38 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-11-01 23:34:18 +0300
commitc887a50f62a7c3380653bbc6091b313090015f44 (patch)
tree9e41b94fcf8588fc05b86dee25738dc8b5175e45 /tests/python/CMakeLists.txt
parentea1c5a6c15d956639dde8445d79b7f8abe7983fd (diff)
Add sequencer transform tests
Tests files are based on test from D8393 Test files should be in `lib\tests\sequence_editing` These are files, I will add few more tests including animation test. {F9155273} Using generic tool to compare rendered vs reference image as other render engines. Reviewed By: sergey Differential Revision: https://developer.blender.org/D9394
Diffstat (limited to 'tests/python/CMakeLists.txt')
-rw-r--r--tests/python/CMakeLists.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index 9ff44ac8fe9..f43ca567f7d 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -699,6 +699,30 @@ if(WITH_CODEC_FFMPEG)
)
endif()
+
+# ------------------------------------------------------------------------------
+# SEQUENCER RENDER TESTS
+
+if(NOT OPENIMAGEIO_IDIFF)
+ MESSAGE(STATUS "Disabling sequencer render tests because OIIO idiff does not exist")
+else()
+ set(render_tests
+ transform
+ )
+
+ foreach(render_test ${render_tests})
+ add_python_test(
+ sequencer_render_${render_test}
+ ${CMAKE_CURRENT_LIST_DIR}/sequencer_render_tests.py
+ -blender "${TEST_BLENDER_EXE}"
+ -testdir "${TEST_SRC_DIR}/sequence_editing/${render_test}"
+ -idiff "${OPENIMAGEIO_IDIFF}"
+ -outdir "${TEST_OUT_DIR}/sequence_editing/${render_test}"
+ )
+ endforeach()
+endif()
+
+
add_subdirectory(collada)
# TODO: disabled for now after collection unification