77543bde41
Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
29 lines
899 B
CMake
29 lines
899 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
project(CTestTestTimeout)
|
|
include(CTest)
|
|
|
|
if(NOT TIMEOUT)
|
|
if(CYGWIN)
|
|
set(TIMEOUT 4) # Cygwin CMake sometimes takes > 1 second to load!
|
|
else()
|
|
set(TIMEOUT 1)
|
|
endif()
|
|
endif()
|
|
|
|
add_definitions(-DTIMEOUT=${TIMEOUT})
|
|
add_executable (Timeout timeout.c)
|
|
|
|
add_test(NAME TestTimeout
|
|
COMMAND ${CMAKE_COMMAND} -D Timeout=$<TARGET_FILE:Timeout>
|
|
-D Log=${CMAKE_CURRENT_BINARY_DIR}/timeout.log
|
|
-P ${CMAKE_CURRENT_SOURCE_DIR}/timeout.cmake
|
|
)
|
|
set_tests_properties(TestTimeout PROPERTIES TIMEOUT ${TIMEOUT})
|
|
|
|
add_test(NAME CheckChild
|
|
COMMAND ${CMAKE_COMMAND} -D Timeout=$<TARGET_FILE:Timeout>
|
|
-D Log=${CMAKE_CURRENT_BINARY_DIR}/timeout.log
|
|
-P ${CMAKE_CURRENT_SOURCE_DIR}/check.cmake
|
|
)
|
|
set_tests_properties(CheckChild PROPERTIES DEPENDS TestTimeout)
|