diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-28 19:37:44 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-28 19:37:44 (GMT) |
commit | fce93e890dc7b2ba7fe66ccdfee55d27a1a8c049 (patch) | |
tree | 04cac0c82efa118abdd34372ad533e58260a3fc8 /Source/CTest/cmCTestScriptHandler.cxx | |
parent | d9dd47422bbc14c452ee49ecb91547b527cc46cb (diff) | |
download | CMake-fce93e890dc7b2ba7fe66ccdfee55d27a1a8c049.zip CMake-fce93e890dc7b2ba7fe66ccdfee55d27a1a8c049.tar.gz CMake-fce93e890dc7b2ba7fe66ccdfee55d27a1a8c049.tar.bz2 |
ENH: Add command to read ctest custom files
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 f832710..887d8ad 100644 --- a/Source/CTest/cmCTestScriptHandler.cxx +++ b/Source/CTest/cmCTestScriptHandler.cxx @@ -48,6 +48,7 @@ #include "cmCTestCoverageCommand.h" #include "cmCTestEmptyBinaryDirectoryCommand.h" #include "cmCTestMemCheckCommand.h" +#include "cmCTestReadCustomFilesCommand.h" #include "cmCTestRunScriptCommand.h" #include "cmCTestSleepCommand.h" #include "cmCTestStartCommand.h" @@ -277,6 +278,7 @@ int cmCTestScriptHandler::ReadInScript(const std::string& total_script_arg) this->AddCTestCommand(new cmCTestCoverageCommand); this->AddCTestCommand(new cmCTestEmptyBinaryDirectoryCommand); this->AddCTestCommand(new cmCTestMemCheckCommand); + this->AddCTestCommand(new cmCTestReadCustomFilesCommand); this->AddCTestCommand(new cmCTestRunScriptCommand); this->AddCTestCommand(new cmCTestSleepCommand); this->AddCTestCommand(new cmCTestStartCommand); |