diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-11-03 20:38:23 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-11-03 20:38:23 (GMT) |
commit | b1f1118239cafe51ce69170c0d37e6727de8abe5 (patch) | |
tree | a33f463bee0ea8c03d9aecd91bccf0c16b74f126 /Source/cmCTest.h | |
parent | 5f30c8caac40c930abab4f8c6a9f3fd0ddf1280d (diff) | |
download | CMake-b1f1118239cafe51ce69170c0d37e6727de8abe5.zip CMake-b1f1118239cafe51ce69170c0d37e6727de8abe5.tar.gz CMake-b1f1118239cafe51ce69170c0d37e6727de8abe5.tar.bz2 |
ENH: Cleanup parsing of argument to help fix Bug #259 - CMake does not quote correctly in DartTestfile.txt
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 44b15dc..ee19740 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -247,7 +247,7 @@ private: //! Run command specialized for tests. Returns process status and retVal is // return value or exception. - int RunTest( const char* command, std::string* output, int *retVal); + int RunTest(std::vector<const char*> args, std::string* output, int *retVal); std::string GenerateRegressionImages(const std::string& xml); const char* GetTestStatus(int status); |