diff options
author | Brad King <brad.king@kitware.com> | 2019-11-04 21:11:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-05 17:08:01 (GMT) |
commit | af9ed543b0f9d032158f91cdce7ad6908ff9365b (patch) | |
tree | 35440e92b200965f0be878b37226ca0663bdf0a2 /Tests/RunCMake/CTestHardwareAllocation/HardwareCommon.cmake | |
parent | c1d5d5eb11e0260ffadda0851ac844ab46b6b179 (diff) | |
download | CMake-af9ed543b0f9d032158f91cdce7ad6908ff9365b.zip CMake-af9ed543b0f9d032158f91cdce7ad6908ff9365b.tar.gz CMake-af9ed543b0f9d032158f91cdce7ad6908ff9365b.tar.bz2 |
CTest: Rename PROCESSES test property to RESOURCE_GROUPS
The `PROCESSES` test property name added for CMake 3.16 is too close to
the existing `PROCESSORS` test property. Furthermore, the property in
principle specifies groups of resources organized in a way that is
meaningful to a particular test. The groups may often correspond to
processes but they could have other meanings. Since the property name
`PROCESSES` has not been in a final 3.16 release yet, simply rename it
to `RESOURCE_GROUPS`.
Fixes: #19914
Diffstat (limited to 'Tests/RunCMake/CTestHardwareAllocation/HardwareCommon.cmake')
-rw-r--r-- | Tests/RunCMake/CTestHardwareAllocation/HardwareCommon.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/CTestHardwareAllocation/HardwareCommon.cmake b/Tests/RunCMake/CTestHardwareAllocation/HardwareCommon.cmake index 3893d40..3288f35 100644 --- a/Tests/RunCMake/CTestHardwareAllocation/HardwareCommon.cmake +++ b/Tests/RunCMake/CTestHardwareAllocation/HardwareCommon.cmake @@ -11,7 +11,7 @@ function(add_hardware_test name sleep_time proc) else() add_test(NAME "${name}" COMMAND "${CTHWALLOC_COMMAND}" write "${CMAKE_BINARY_DIR}/cthwalloc.log" "${name}" "${sleep_time}") endif() - set_property(TEST "${name}" PROPERTY PROCESSES "${proc}") + set_property(TEST "${name}" PROPERTY RESOURCE_GROUPS "${proc}") list(APPEND HARDWARE_TESTS "${name}") set(HARDWARE_TESTS "${HARDWARE_TESTS}" PARENT_SCOPE) endfunction() |