You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
296 B
11 lines
296 B
4 years ago
|
include("${COUNT_FILE}" OPTIONAL)
|
||
|
if(NOT COUNT)
|
||
|
set(COUNT 0)
|
||
|
endif()
|
||
|
math(EXPR COUNT "${COUNT} + 1")
|
||
|
file(WRITE "${COUNT_FILE}" "set(COUNT ${COUNT})\n")
|
||
|
if(NOT COUNT EQUAL 2)
|
||
|
message("this test times out except on the 2nd run")
|
||
|
execute_process(COMMAND ${CMAKE_COMMAND} -E sleep 10)
|
||
|
endif()
|