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>2020-08-07 17:43:42 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-08-10 19:14:00 +0300
commit53d203dea8230da4e80f3cc61468a4e24ff6759c (patch)
tree3f1b7498fb1a3108e60a4355bec0e4eef76110e4 /tests/gtests/CMakeLists.txt
parentaf77bf1f0f94cb07d5bf681d1f771d4106873780 (diff)
Tests: move remaining gtests into their own module folders
And make them part of the blender_test runner. The one exception is blenlib performance tests, which we don't want to run by default. They remain in their own executable. Differential Revision: https://developer.blender.org/D8498
Diffstat (limited to 'tests/gtests/CMakeLists.txt')
-rw-r--r--tests/gtests/CMakeLists.txt14
1 files changed, 2 insertions, 12 deletions
diff --git a/tests/gtests/CMakeLists.txt b/tests/gtests/CMakeLists.txt
index 9a7509f81f3..2a89aaa4aea 100644
--- a/tests/gtests/CMakeLists.txt
+++ b/tests/gtests/CMakeLists.txt
@@ -3,19 +3,9 @@ if(WITH_GTESTS)
# Otherwise we get warnings here that we cant fix in external projects
remove_strict_flags()
- # Build common test runner
+ # Build common test executable used by most tests
add_subdirectory(runner)
- # Build tests not yet ported to the common runner
+ # Build utility library used by test executables
add_subdirectory(testing)
- add_subdirectory(blenlib)
- add_subdirectory(blenloader)
- add_subdirectory(guardedalloc)
- add_subdirectory(bmesh)
- if(WITH_CODEC_FFMPEG)
- add_subdirectory(ffmpeg)
- endif()
- if(WITH_ALEMBIC)
- add_subdirectory(alembic)
- endif()
endif()