diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2018-05-03 20:42:09 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2018-05-09 12:22:55 (GMT) |
commit | 563781099f08ce36c2213066936806e8bb78b933 (patch) | |
tree | 0c9ea78ceca5c3aa3583c66d27edc6ae3ba9c1c4 /Source/cmCTest.h | |
parent | d3292d2d102710cb66d933dc27d72e3002d008b9 (diff) | |
download | CMake-563781099f08ce36c2213066936806e8bb78b933.zip CMake-563781099f08ce36c2213066936806e8bb78b933.tar.gz CMake-563781099f08ce36c2213066936806e8bb78b933.tar.bz2 |
ctest_start: read model from TAG file
This change reworks ctest_start() so that simply calling
ctest_start(APPEND) will read all the information from the TAG file.
On top of that, it relaxes the argument parsing for ctest_start() to
allow greater flexibility in the argument ordering, and the documentation
for ctest_start() has been cleaned up.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index b2f4f25..603bb41 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -295,9 +295,10 @@ public: enum { - EXPERIMENTAL, - NIGHTLY, - CONTINUOUS + UNKNOWN = -1, + EXPERIMENTAL = 0, + NIGHTLY = 1, + CONTINUOUS = 2, }; /** provide some more detailed info on the return code for ctest */ |