summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/GoogleTest/GoogleTestDiscoveryTimeout.cmake
blob: 7398fafb038c5a140c609d3c47ebf1e469d1a978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
project(test_include_dirs)
include(CTest)
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}
)