Files
CMake/Tests/RunCMake/GoogleTest/GoogleTestDiscoveryTimeout.cmake
Craig Scott 09c38e8de6 Tests: Don't ask for things not required for GoogleTest
The test cases only need C or C++, but not both. The CTest module
is also not needed because we are not running a dashboard script.
2020-06-24 21:56:26 +10:00

14 lines
347 B
CMake

project(test_include_dirs LANGUAGES CXX)
include(GoogleTest)
enable_testing()
add_executable(discovery_timeout_test timeout_test.cpp)
target_compile_definitions(discovery_timeout_test PRIVATE discoverySleepSec=10)
gtest_discover_tests(
discovery_timeout_test
TEST_PREFIX discovery_
DISCOVERY_TIMEOUT 2
DISCOVERY_MODE ${DISCOVERY_MODE}
)