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
path: root/tests
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-15 21:11:33 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-03-15 21:11:33 +0300
commit52a7636c2921c8a165a783c00821692b0c84fd46 (patch)
tree40a826a629165fcd1b441bae389c596864b49281 /tests
parent65d95879f73951861a90efe1c3ac5d1d03530fd6 (diff)
Tests: remove unnecessary _test postfix on test names.
Diffstat (limited to 'tests')
-rw-r--r--tests/python/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/python/CMakeLists.txt b/tests/python/CMakeLists.txt
index 23d32821c5b..d34c9f70f82 100644
--- a/tests/python/CMakeLists.txt
+++ b/tests/python/CMakeLists.txt
@@ -535,7 +535,7 @@ if(WITH_CYCLES)
if(OPENIMAGEIO_IDIFF AND EXISTS "${TEST_SRC_DIR}/render/ctests/shader")
macro(add_cycles_render_test subject)
add_python_test(
- cycles_${subject}_test
+ cycles_${subject}
${CMAKE_CURRENT_LIST_DIR}/cycles_render_tests.py
-blender "$<TARGET_FILE:blender>"
-testdir "${TEST_SRC_DIR}/render/ctests/${subject}"
@@ -581,7 +581,7 @@ if(WITH_OPENGL_DRAW_TESTS)
file(GLOB_RECURSE blends "${child_path}/*.blend")
if(blends)
add_python_test(
- opengl_draw_${child}_test
+ opengl_draw_${child}
${CMAKE_CURRENT_LIST_DIR}/opengl_draw_tests.py
-blender "$<TARGET_FILE:blender>"
-testdir "${child_path}"
@@ -625,7 +625,7 @@ endif()
if(WITH_CODEC_FFMPEG)
add_python_test(
- ffmpeg_tests
+ ffmpeg
${CMAKE_CURRENT_LIST_DIR}/ffmpeg_tests.py
--blender "$<TARGET_FILE:blender>"
--testdir "${TEST_DATA_SRC_DIR}/ffmpeg"