mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-10 07:40:03 -06:00
12 lines
371 B
CMake
12 lines
371 B
CMake
setup_resource_tests()
|
|
|
|
add_resource_test(Test1 4 "transmogrifiers:2")
|
|
|
|
# Mitigate possible race conditions to ensure that the events are logged in the
|
|
# exact order we want
|
|
add_test(NAME Test2Sleep COMMAND "${CMAKE_COMMAND}" -E sleep 2)
|
|
add_resource_test(Test2 4 "transmogrifiers:2")
|
|
set_property(TEST Test2 APPEND PROPERTY DEPENDS Test2Sleep)
|
|
|
|
cleanup_resource_tests()
|