diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-14 18:00:45 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-14 18:00:45 (GMT) |
commit | 04f0a634a5e8ebec379e7d59334181ab2c3bc854 (patch) | |
tree | 219a7c871026fe2b165b7ef35d36cd6078be31e7 /Source/CTest/cmCTestScriptHandler.cxx | |
parent | 40d289dd686184cfb856734226f52900e5dfcf1b (diff) | |
download | CMake-04f0a634a5e8ebec379e7d59334181ab2c3bc854.zip CMake-04f0a634a5e8ebec379e7d59334181ab2c3bc854.tar.gz CMake-04f0a634a5e8ebec379e7d59334181ab2c3bc854.tar.bz2 |
ENH: Add commands for memory checking and coverage
Diffstat (limited to 'Source/CTest/cmCTestScriptHandler.cxx')
-rw-r--r-- | Source/CTest/cmCTestScriptHandler.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestScriptHandler.cxx b/Source/CTest/cmCTestScriptHandler.cxx index 9c57043..2a408b1 100644 --- a/Source/CTest/cmCTestScriptHandler.cxx +++ b/Source/CTest/cmCTestScriptHandler.cxx @@ -45,13 +45,15 @@ #include "cmCTestBuildCommand.h" #include "cmCTestConfigureCommand.h" +#include "cmCTestCoverageCommand.h" #include "cmCTestEmptyBinaryDirectoryCommand.h" +#include "cmCTestMemCheckCommand.h" #include "cmCTestRunScriptCommand.h" #include "cmCTestSleepCommand.h" #include "cmCTestStartCommand.h" -#include "cmCTestUpdateCommand.h" -#include "cmCTestTestCommand.h" #include "cmCTestSubmitCommand.h" +#include "cmCTestTestCommand.h" +#include "cmCTestUpdateCommand.h" #define CTEST_INITIAL_CMAKE_OUTPUT_FILE_NAME "CTestInitialCMakeOutput.log" @@ -228,7 +230,9 @@ int cmCTestScriptHandler::ReadInScript(const std::string& total_script_arg) // created with the same format lets do that - ken this->AddCTestCommand(new cmCTestBuildCommand); this->AddCTestCommand(new cmCTestConfigureCommand); + this->AddCTestCommand(new cmCTestCoverageCommand); this->AddCTestCommand(new cmCTestEmptyBinaryDirectoryCommand); + this->AddCTestCommand(new cmCTestMemCheckCommand); this->AddCTestCommand(new cmCTestRunScriptCommand); this->AddCTestCommand(new cmCTestSleepCommand); this->AddCTestCommand(new cmCTestStartCommand); |