summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-08-08 22:28:03 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-08-08 22:28:03 (GMT)
commit511b0c9661c44da9670153127178d11eb359907b (patch)
tree03a619ad1921bffac7e1769313ea7a2892ed3a6f /Source/cmCTest.h
parent5a19bd679ede79be0bde3922810f2f3c918becc9 (diff)
downloadCMake-511b0c9661c44da9670153127178d11eb359907b.zip
CMake-511b0c9661c44da9670153127178d11eb359907b.tar.gz
CMake-511b0c9661c44da9670153127178d11eb359907b.tar.bz2
ENH: Add regression images support
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r--Source/cmCTest.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index e70983c..fe26f5b 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -150,6 +150,7 @@ private:
int m_ReturnValue;
std::string m_CompletionStatus;
std::string m_Output;
+ std::string m_RegressionImages;
};
struct cmCTestBuildErrorWarning
@@ -215,7 +216,7 @@ private:
/**
* Generate the Dart compatible output
*/
- void GenerateDartOutput(std::ostream& os);
+ void GenerateDartTestOutput(std::ostream& os);
void GenerateDartBuildOutput(std::ostream& os,
std::vector<cmCTestBuildErrorWarning>);
@@ -226,6 +227,8 @@ private:
bool RunMakeCommand(const char* command, std::string* output,
int* retVal, const char* dir, bool verbose, int timeout, std::ofstream& ofs);
+
+ std::string GenerateRegressionImages(const std::string& xml);
};
#endif