summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-01-09 17:05:23 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-01-09 17:05:23 (GMT)
commited387ffe6b72986856ca1f14c9ac11c4e12c5d6b (patch)
tree10bc89c82e4b6c9c23834e261fea52f9c771b12d /Source/cmCTest.h
parent86b103f2713113327d1ee9325e1c635ec41e4009 (diff)
downloadCMake-ed387ffe6b72986856ca1f14c9ac11c4e12c5d6b.zip
CMake-ed387ffe6b72986856ca1f14c9ac11c4e12c5d6b.tar.gz
CMake-ed387ffe6b72986856ca1f14c9ac11c4e12c5d6b.tar.bz2
ENH: add subproject tag property for ctest
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r--Source/cmCTest.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index 10a7d5b..adfafdf 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -27,6 +27,7 @@ class cmMakefile;
class cmCTestGenericHandler;
class cmGeneratedFileStream;
class cmCTestCommand;
+class cmCTestScriptHandler;
#define cmCTestLog(ctSelf, logType, msg) \
do { \
@@ -171,6 +172,7 @@ public:
///! The max output width
int GetMaxTestNameWidth() const;
+ int SetMaxTestNameWidth(int w) { this->MaxTestNameWidth = w;}
/**
* Run a single executable command and put the stdout and stderr
@@ -335,6 +337,7 @@ public:
/** Direct process output to given streams. */
void SetStreams(std::ostream* out, std::ostream* err)
{ this->StreamOut = out; this->StreamErr = err; }
+ void AddSiteProperties(std::ostream& );
private:
std::string ConfigType;
bool Verbose;