9 lines
228 B
CMake
Raw Normal View History

2021-09-14 00:13:48 +02:00
cmake_minimum_required (VERSION 2.8.12)
2013-03-16 19:13:01 +02:00
project (CTestTestZeroTimeout)
include (CTest)
2011-01-16 11:35:12 +01:00
2013-03-16 19:13:01 +02:00
add_executable (Sleep sleep.c)
2011-01-16 11:35:12 +01:00
2013-03-16 19:13:01 +02:00
add_test (TestExplicitZeroTimeout Sleep)
set_tests_properties(TestExplicitZeroTimeout PROPERTIES TIMEOUT 0)