d80323bccd
Increased the time difference between each test so that overburdened systems won't fail this test sometimes.
10 lines
212 B
CMake
10 lines
212 B
CMake
CMAKE_MINIMUM_REQUIRED (VERSION 2.6)
|
|
PROJECT (CTestTestScheduler)
|
|
INCLUDE (CTest)
|
|
|
|
ADD_EXECUTABLE (Sleep sleep.c)
|
|
|
|
FOREACH (time RANGE 1 4)
|
|
ADD_TEST (TestSleep${time} Sleep ${time})
|
|
ENDFOREACH (time RANGE 1 4)
|