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:
authorRay Molenkamp <github@lazydodo.com>2020-07-30 22:18:05 +0300
committerRay Molenkamp <github@lazydodo.com>2020-07-30 22:18:05 +0300
commit44928a2a8f2ebb3a9489e21aa3169b20f6945590 (patch)
tree97c71701cb49b03d52e96691ae58790610e1a5b1 /tests/gtests
parent848cbe889b6330822d8bbf56a0bc7e755e153fd1 (diff)
Fix: Blender_test not working on windows.
This bumps the minimum requirement for cmake from 3.10 to 3.18 on windows if `WITH_GTESTS` is enabled. Reviewed By: sergey brecht sybren campbellbarton Differential Revision: https://developer.blender.org/D8405
Diffstat (limited to 'tests/gtests')
-rw-r--r--tests/gtests/runner/CMakeLists.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/gtests/runner/CMakeLists.txt b/tests/gtests/runner/CMakeLists.txt
index 59537aab571..954fcf914a9 100644
--- a/tests/gtests/runner/CMakeLists.txt
+++ b/tests/gtests/runner/CMakeLists.txt
@@ -77,10 +77,11 @@ set(_GOOGLETEST_DISCOVER_TESTS_SCRIPT
)
gtest_discover_tests(blender_test
-# So that the binary can find its shared libs on window.
- WORKING_DIRECTORY "$<TARGET_FILE_DIR:blender>"
+ WORKING_DIRECTORY "${TEST_INSTALL_DIR}"
+# So that it will run after the install phase that will copy the required libraries
+ DISCOVERY_MODE PRE_TEST
# So that unit tests know where to find files:
EXTRA_ARGS
--test-assets-dir "${CMAKE_SOURCE_DIR}/../lib/tests"
- --test-release-dir "${CMAKE_INSTALL_PREFIX}/${BLENDER_VERSION}"
+ --test-release-dir "${TEST_INSTALL_DIR}/${BLENDER_VERSION}"
)