diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2019-11-05 16:40:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-05 17:08:36 (GMT) |
commit | c1435d98120dff203de01d75f8f91e99bc75fe2b (patch) | |
tree | 0b51fde544e8a1f677b3daf516e56fefdb3a905c | |
parent | eb9d945f142ac7638baaf879fb9464fa39e3e9a7 (diff) | |
download | CMake-c1435d98120dff203de01d75f8f91e99bc75fe2b.zip CMake-c1435d98120dff203de01d75f8f91e99bc75fe2b.tar.gz CMake-c1435d98120dff203de01d75f8f91e99bc75fe2b.tar.bz2 |
Help: Fix error in resource allocation example
-rw-r--r-- | Help/manual/ctest.1.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/manual/ctest.1.rst b/Help/manual/ctest.1.rst index be1ec5d..dbefb91 100644 --- a/Help/manual/ctest.1.rst +++ b/Help/manual/ctest.1.rst @@ -1479,8 +1479,8 @@ The following variables are passed to the test process: * ``CTEST_RESOURCE_GROUP_2_CRYPTO_CHIPS=id:card0,slots:2`` In this example, group 0 gets 2 slots from GPU ``0``, group 1 gets 2 slots - from GPU ``2``, and group 2 gets 4 slots from GPU ``1`` and 2 slots from - cryptography chip ``card0``. + from GPU ``2``, and group 2 gets 4 slots from GPU ``1``, 1 slot from GPU + ``3``, and 2 slots from cryptography chip ``card0``. ``<num>`` is a number from zero to ``CTEST_RESOURCE_GROUP_COUNT`` minus one. ``<resource-type>`` is the name of a resource type, converted to uppercase. |