diff options
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index b73f8ce..14bdfcc 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -297,6 +297,10 @@ public: std::vector<cmStdString> &GetInitialCommandLineArguments() { return this->InitialCommandLineArguments; }; + //! Set the track to submit to + void SetSpecificTrack(const char* track); + const char* GetSpecificTrack(); + private: std::string ConfigType; bool Verbose; @@ -342,6 +346,7 @@ private: bool TomorrowTag; int TestModel; + std::string SpecificTrack; double TimeOut; |