diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2019-11-22 18:43:32 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2019-11-25 16:08:27 (GMT) |
commit | f9f294f5faf980aa39721e4deb465b2e9dbbbd9a (patch) | |
tree | 3f9210c5f80ab9f1199daaaa44ebeb84930f7335 /Help/manual/ctest.1.rst | |
parent | 99f0881d8c6d0c435e595c5f9510da776827ee3e (diff) | |
download | CMake-f9f294f5faf980aa39721e4deb465b2e9dbbbd9a.zip CMake-f9f294f5faf980aa39721e4deb465b2e9dbbbd9a.tar.gz CMake-f9f294f5faf980aa39721e4deb465b2e9dbbbd9a.tar.bz2 |
CTest: Add version field to resource spec file
Fixes: #20007
Diffstat (limited to 'Help/manual/ctest.1.rst')
-rw-r--r-- | Help/manual/ctest.1.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Help/manual/ctest.1.rst b/Help/manual/ctest.1.rst index dbefb91..6af795e 100644 --- a/Help/manual/ctest.1.rst +++ b/Help/manual/ctest.1.rst @@ -1345,6 +1345,10 @@ the following resource specification file: .. code-block:: json { + "version": { + "major": 1, + "minor": 0 + }, "local": [ { "gpus": [ @@ -1376,6 +1380,11 @@ the following resource specification file: The members are: +``version`` + An object containing a ``major`` integer field and a ``minor`` integer field. + Currently, the only supported version is major ``1``, minor ``0``. Any other + value is an error. + ``local`` A JSON array of resource sets present on the system. Currently, this array is restricted to being of size 1. |