summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-11-07 16:21:03 (GMT)
committerBrad King <brad.king@kitware.com>2019-11-07 19:14:28 (GMT)
commited65b3e984ccce9b915a5a71e5a8d13b892b63d8 (patch)
treeb23d0a38d6f4e16384d4acd6d575d621e478b72d /Source/cmCTest.h
parent449fceeb1fd9619d9b01f8aed0e9e5784e10dacb (diff)
downloadCMake-ed65b3e984ccce9b915a5a71e5a8d13b892b63d8.zip
CMake-ed65b3e984ccce9b915a5a71e5a8d13b892b63d8.tar.gz
CMake-ed65b3e984ccce9b915a5a71e5a8d13b892b63d8.tar.bz2
CTest: Rename internal APIs for --repeat options
Replace use of the term "rerun" with "repeat" to match the public names.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r--Source/cmCTest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index bef0f8d..e0ae100 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -431,16 +431,16 @@ public:
const std::map<std::string, std::string>& GetDefinitions() const;
/** Return the number of times a test should be run */
- int GetTestRepeat() const;
+ int GetRepeatCount() const;
- enum class Rerun
+ enum class Repeat
{
Never,
UntilFail,
UntilPass,
AfterTimeout,
};
- Rerun GetRerunMode() const;
+ Repeat GetRepeatMode() const;
void GenerateSubprojectsOutput(cmXMLWriter& xml);
std::vector<std::string> GetLabelsForSubprojects();