diff options
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index bca7ef4..c9d15d2 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -95,7 +95,8 @@ public: */ void ProcessDirectory(tm_VectorOfStrings &passed, tm_VectorOfStrings &failed, - bool memcheck); + bool memcheck, + std::ostream* logfile); /** * Find the executable for a test @@ -359,7 +360,8 @@ private: //! Run command specialized for tests. Returns process status and retVal is // return value or exception. - int RunTest(std::vector<const char*> args, std::string* output, int *retVal); + int RunTest(std::vector<const char*> args, std::string* output, int *retVal, + std::ostream* logfile); std::string GenerateRegressionImages(const std::string& xml); const char* GetTestStatus(int status); |