diff options
author | Berk Geveci <berk.geveci@kitware.com> | 2001-11-29 21:44:22 (GMT) |
---|---|---|
committer | Berk Geveci <berk.geveci@kitware.com> | 2001-11-29 21:44:22 (GMT) |
commit | 521d8d9410c7c7bb5958357933c9759035f51828 (patch) | |
tree | be128f3ce5a15f3aedd02601de35a2018cbc6cbc /Source/ctest.cxx | |
parent | e57a982136f654e21607ce8db0d890dfd65a0878 (diff) | |
download | CMake-521d8d9410c7c7bb5958357933c9759035f51828.zip CMake-521d8d9410c7c7bb5958357933c9759035f51828.tar.gz CMake-521d8d9410c7c7bb5958357933c9759035f51828.tar.bz2 |
Improvements to the curses interface.
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index 24cf666..b8f5b9c 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -107,9 +107,11 @@ void ctest::ProcessDirectory(int &passed, int &failed) cmRegularExpression var(this->m_RegExp.c_str()); cmRegularExpression dartStuff("([\t\n ]*<DartMeasurement.*/DartMeasurement[a-zA-Z]*>[\t ]*[\n]*)"); + bool parseError; while ( fin ) { - if(cmSystemTools::ParseFunction(fin, name, args, "DartTestfile.txt")) + if(cmSystemTools::ParseFunction(fin, name, args, "DartTestfile.txt", + parseError)) { if (name == "SUBDIRS") { |