summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CTestHardwareAllocation/ensure_parallel.cmake
blob: 1dafb8fc28e91e4bb3798c5272cfdd87b7422f00 (plain)
1
2
3
4
5
6
7
8
9
10
11
setup_hardware_tests()

add_hardware_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_hardware_test(Test2 4 "transmogrifiers:2")
set_property(TEST Test2 APPEND PROPERTY DEPENDS Test2Sleep)

cleanup_hardware_tests()