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:
authorSybren A. Stüvel <sybren@blender.org>2020-07-16 13:58:49 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-07-16 13:58:49 +0300
commit56aa5b0d8c6b66369f979e8bee4f1bd99454a99f (patch)
tree521ad55ec7da54988109d5105593fd817704cfa0 /CMakeLists.txt
parent065a00ee3e6668172faae5a72027de8b1bca9d77 (diff)
T73268: Link C/C++ unit tests into single executable
This commit introduces a new way to build unit tests. It is now possible for each module to generate its own test library. The tests in these libraries are then bundled into a single executable. The test executable can be run with `ctest`. Even though the tests reside in a single executable, they are still exposed as individual tests to `ctest`, and thus can be selected via its `-R` argument. Not yet ported tests still build & run as before. The following rules apply: - Test code should reside in the same directory as the code under test. - Tests that target functionality in `somefile.{c,cc}` should reside in `somefile_test.cc`. - The namespace for tests is the `tests` sub-namespace of the code under test. For example, tests for `blender::bke` should be in `blender::bke:tests`. - The test files should be listed in the module's `CMakeLists.txt` in a `blender_add_test_lib()` call. See the `blenkernel` module for an example. Reviewed By: brecht Differential Revision: https://developer.blender.org/D7649
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 824f635e2b2..49b974596f7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1628,10 +1628,6 @@ endif()
#-----------------------------------------------------------------------------
# Libraries
-if(WITH_GTESTS)
- include(GTestTesting)
-endif()
-
if(WITH_BLENDER)
add_subdirectory(intern)
add_subdirectory(extern)