14 lines
351 B
CMake
Raw Normal View History

2024-11-11 15:18:55 +01:00
cmake_minimum_required(VERSION 3.10)
2013-03-16 19:13:01 +02:00
project (CTestTestCostSerial)
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
foreach (index RANGE 1 3)
add_test (TestSleep${index} Sleep)
endforeach ()
2011-01-16 11:35:12 +01:00
2013-03-16 19:13:01 +02:00
set_tests_properties(TestSleep1 PROPERTIES COST -500)
set_tests_properties(TestSleep2 PROPERTIES COST 12)
set_tests_properties(TestSleep3 PROPERTIES COST 0)