mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
This needlessly produces warnings during the test runs that no-one sees but that are distracting when actually inspecting the logs.
12 lines
302 B
CMake
12 lines
302 B
CMake
cmake_minimum_required (VERSION 2.8.12)
|
|
project(CTestTestStopTime)
|
|
include(CTest)
|
|
|
|
add_executable (Sleep sleep.c)
|
|
|
|
add_test (TestSleep Sleep 30)
|
|
add_test (ShouldNotRun Sleep 30)
|
|
|
|
set_tests_properties(ShouldNotRun PROPERTIES DEPENDS TestSleep)
|
|
set_tests_properties(ShouldNotRun PROPERTIES WILL_FAIL ON)
|