diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-29 17:01:24 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-29 17:01:24 (GMT) |
commit | 386900bfdd5836ccabeb0c050a6292c50aec79d6 (patch) | |
tree | 8316484c17eb5201a18f11ee8ff6245ae29ce365 /Source/CTest/cmCTestTestCommand.h | |
parent | b75166ea45173f8bc2cb9076f511a51b8112f61b (diff) | |
download | CMake-386900bfdd5836ccabeb0c050a6292c50aec79d6.zip CMake-386900bfdd5836ccabeb0c050a6292c50aec79d6.tar.gz CMake-386900bfdd5836ccabeb0c050a6292c50aec79d6.tar.bz2 |
ENH: Several cleanups and make sure things get propagated where they should. Also, allow to load CTest custom files to the actual ctest -S script
Diffstat (limited to 'Source/CTest/cmCTestTestCommand.h')
-rw-r--r-- | Source/CTest/cmCTestTestCommand.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/Source/CTest/cmCTestTestCommand.h b/Source/CTest/cmCTestTestCommand.h index 8831fc3..895de00 100644 --- a/Source/CTest/cmCTestTestCommand.h +++ b/Source/CTest/cmCTestTestCommand.h @@ -9,8 +9,8 @@ Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ @@ -19,8 +19,6 @@ #include "cmCTestHandlerCommand.h" -class cmCTestGenericHandler; - /** \class cmCTestTest * \brief Run a ctest script * @@ -31,11 +29,11 @@ class cmCTestTestCommand : public cmCTestHandlerCommand public: cmCTestTestCommand(); - + /** * This is a virtual constructor for the command. */ - virtual cmCommand* Clone() + virtual cmCommand* Clone() { cmCTestTestCommand* ni = new cmCTestTestCommand; ni->CTest = this->CTest; @@ -51,11 +49,11 @@ public: /** * Succinct documentation. */ - virtual const char* GetTerseDocumentation() + virtual const char* GetTerseDocumentation() { return "Tests the repository."; } - + /** * More documentation. */ |