diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2010-03-01 11:00:23 -0500 |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2010-03-01 11:06:28 -0500 |
commit | 09e748c69a31e54ad4ceb16229f4caa987d61d3b (patch) | |
tree | a85c7c37878e56ffdd18a8346c94ad7f6d6a76a9 /Source/cmCTest.h | |
parent | 370e5b942513abd93cbd2d486a0627ccb47267af (diff) | |
download | cmake-09e748c69a31e54ad4ceb16229f4caa987d61d3b.tar.gz |
Configurable path to CTest cost data file
Allow the user to set the CMake variable CTEST_COST_DATA_FILE, which will be used to store the cost data from test runs. If not set, defaults to the original location in the build tree Testing/Temporary dir.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 8621b10dc7..adf359c7f7 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -398,6 +398,8 @@ public: { this->StreamOut = out; this->StreamErr = err; } void AddSiteProperties(std::ostream& ); bool GetLabelSummary() { return this->LabelSummary;} + + std::string GetCostDataFile(); private: std::string ConfigType; std::string ScheduleType; |