diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-02-17 15:23:00 -0500 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-02-17 15:23:00 -0500 |
commit | 79a7f42a218958a44158a023ba21b08f3808ec08 (patch) | |
tree | 6e1ec9b7f761dbf31b36fa18d2ed2a398d6cec46 /Source/CTest/cmCTestScriptHandler.cxx | |
parent | ab7668de3f952a289987dca477f6540912302430 (diff) | |
download | cmake-79a7f42a218958a44158a023ba21b08f3808ec08.tar.gz |
ENH: Cleanups and add CTEST_UPDATE command
Diffstat (limited to 'Source/CTest/cmCTestScriptHandler.cxx')
-rw-r--r-- | Source/CTest/cmCTestScriptHandler.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestScriptHandler.cxx b/Source/CTest/cmCTestScriptHandler.cxx index ba396ba0a4..5430619ec1 100644 --- a/Source/CTest/cmCTestScriptHandler.cxx +++ b/Source/CTest/cmCTestScriptHandler.cxx @@ -46,6 +46,7 @@ #include "cmCTestRunScriptCommand.h" #include "cmCTestSleepCommand.h" #include "cmCTestStartCommand.h" +#include "cmCTestUpdateCommand.h" #define CTEST_INITIAL_CMAKE_OUTPUT_FILE_NAME "CTestInitialCMakeOutput.log" @@ -223,6 +224,7 @@ int cmCTestScriptHandler::ReadInScript(const std::string& total_script_arg) this->AddCTestCommand(new cmCTestEmptyBinaryDirectoryCommand); this->AddCTestCommand(new cmCTestSleepCommand); this->AddCTestCommand(new cmCTestStartCommand); + this->AddCTestCommand(new cmCTestUpdateCommand); // add the script arg if defined if (script_arg.size()) |