diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-01-18 18:03:32 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-01-18 18:03:32 (GMT) |
commit | 7e1ba9d0757885626b1ed9a26a0b014d6755429b (patch) | |
tree | 5b9ed6590a34c24a07d5b39bfe5a267f7e28df13 /Source/cmCTest.h | |
parent | e4048118dea476a018d1944771e0c95b8805ec21 (diff) | |
download | CMake-7e1ba9d0757885626b1ed9a26a0b014d6755429b.zip CMake-7e1ba9d0757885626b1ed9a26a0b014d6755429b.tar.gz CMake-7e1ba9d0757885626b1ed9a26a0b014d6755429b.tar.bz2 |
BUG: add output on failure to ctest #8255
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 d822fec..b949378 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -467,6 +467,9 @@ private: bool CheckArgument(const std::string& arg, const char* varg1, const char* varg2 = 0); + //! Output errors from a test + void OutputTestErrors(std::vector<char> const &process_output); + bool SuppressUpdatingCTestConfiguration; bool Debug; @@ -482,6 +485,8 @@ private: cmGeneratedFileStream* OutputLogFile; int OutputLogFileLastTag; + + bool OutputTestOutputOnTestFailure; }; class cmCTestLogWrite |