diff options
author | Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com> | 2016-06-21 00:37:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-07-05 15:19:00 (GMT) |
commit | 6d8b9aa65ab06300a50f6c23897b9e37cadccc47 (patch) | |
tree | 93172f529e5972168ca3d0dcbf93b948798dadc0 /Source/cmCTest.h | |
parent | 280d0a6947aee7d73404a3d5d0a795d490a781db (diff) | |
download | CMake-6d8b9aa65ab06300a50f6c23897b9e37cadccc47.zip CMake-6d8b9aa65ab06300a50f6c23897b9e37cadccc47.tar.gz CMake-6d8b9aa65ab06300a50f6c23897b9e37cadccc47.tar.bz2 |
cmCTest: Improve readability adding "HandleTest(Action|Model)Argument()"
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index d8e48b1..f42a274 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -579,6 +579,14 @@ private: //! Output errors from a test void OutputTestErrors(std::vector<char> const& process_output); + //! Handle the --test-action command line argument + bool HandleTestActionArgument(const char* ctestExec, size_t& i, + const std::vector<std::string>& args); + + //! Handle the --test-model command line argument + bool HandleTestModelArgument(const char* ctestExec, size_t& i, + const std::vector<std::string>& args); + int RunCMakeAndTest(std::string* output); int ExecuteTests(); |