summaryrefslogtreecommitdiff
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2018-05-03 16:42:09 -0400
committerKyle Edwards <kyle.edwards@kitware.com>2018-05-09 08:22:55 -0400
commit563781099f08ce36c2213066936806e8bb78b933 (patch)
tree0c9ea78ceca5c3aa3583c66d27edc6ae3ba9c1c4 /Source/cmCTest.h
parentd3292d2d102710cb66d933dc27d72e3002d008b9 (diff)
downloadcmake-563781099f08ce36c2213066936806e8bb78b933.tar.gz
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.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index b2f4f25085..603bb41e53 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 */