summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-12-26 20:02:26 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-12-26 20:02:26 (GMT)
commit2f2596c213c5be33ec653ed2d4662dc3bbafc60f (patch)
tree9c23692c9fe48d0d9bc348d21aa58170a2dbcf6e /Source/cmCTest.h
parent32accc160762ca80f1138d4e9c710d9edb72479c (diff)
downloadCMake-2f2596c213c5be33ec653ed2d4662dc3bbafc60f.zip
CMake-2f2596c213c5be33ec653ed2d4662dc3bbafc60f.tar.gz
CMake-2f2596c213c5be33ec653ed2d4662dc3bbafc60f.tar.bz2
ENH: Add option to submit notes. Implements Bug #465 - Add notes support to CTest
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r--Source/cmCTest.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index 8321581..6fe457b 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -137,6 +137,8 @@ public:
CONTINUOUS
};
+ int GenerateNotesFile(const char* files);
+
private:
enum {
FIRST_TEST = 0,
@@ -148,8 +150,9 @@ private:
COVERAGE_TEST = 6,
MEMCHECK_TEST = 7,
SUBMIT_TEST = 8,
- ALL_TEST = 9,
- LAST_TEST = 10
+ NOTES_TEST = 9,
+ ALL_TEST = 10,
+ LAST_TEST = 11
};
enum { // Program statuses
@@ -313,6 +316,9 @@ private:
//! End CTest XML output file
void EndXML(std::ostream& ostr);
+ //! Create not from files.
+ int GenerateDartNotesOutput(std::ostream& os, const tm_VectorOfStrings& files);
+
//! Parse Valgrind/Purify/Bounds Checker result out of the output string. After running,
// log holds the output and results hold the different memmory errors.
bool ProcessMemCheckOutput(const std::string& str, std::string& log, int* results);