Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / CTest / cmCTestStartCommand.h
blobf35917453273b20565298f4f2f9f047508e6d0c7
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmCTestStartCommand.h,v $
5 Language: C++
6 <<<<<<< cmCTestStartCommand.h
7 Date: $Date: 2008/01/23 15:28:01 $
8 Version: $Revision: 1.5 $
9 =======
10 Date: $Date: 2008-05-12 13:11:51 $
11 Version: $Revision: 1.6 $
12 >>>>>>> 1.6
14 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
15 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
17 This software is distributed WITHOUT ANY WARRANTY; without even
18 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 PURPOSE. See the above copyright notices for more information.
21 =========================================================================*/
22 #ifndef cmCTestStartCommand_h
23 #define cmCTestStartCommand_h
25 #include "cmCTestCommand.h"
27 /** \class cmCTestStart
28 * \brief Run a ctest script
30 * cmCTestStartCommand defineds the command to start the nightly testing.
32 class cmCTestStartCommand : public cmCTestCommand
34 public:
36 cmCTestStartCommand() {}
38 /**
39 * This is a virtual constructor for the command.
41 virtual cmCommand* Clone()
43 cmCTestStartCommand* ni = new cmCTestStartCommand;
44 ni->CTest = this->CTest;
45 ni->CTestScriptHandler = this->CTestScriptHandler;
46 return ni;
49 /**
50 * This is called when the command is first encountered in
51 * the CMakeLists.txt file.
53 virtual bool InitialPass(std::vector<std::string> const& args,
54 cmExecutionStatus &status);
56 /**
57 * The name of the command as specified in CMakeList.txt.
59 virtual const char* GetName() { return "ctest_start";}
61 /**
62 * Succinct documentation.
64 virtual const char* GetTerseDocumentation()
66 return "Starts the testing for a given model";
69 /**
70 * More documentation.
72 virtual const char* GetFullDocumentation()
74 return
75 " ctest_start(Model [TRACK <track>] [source [binary]])\n"
76 "Starts the testing for a given model. The command should be called "
77 "after the binary directory is initialized. If the 'source' and "
78 "'binary' directory are not specified, it reads the "
79 "CTEST_SOURCE_DIRECTORY and CTEST_BINARY_DIRECTORY. If the track is "
80 "specified, the submissions will go to the specified track.";
83 cmTypeMacro(cmCTestStartCommand, cmCTestCommand);
88 #endif