From faafcdddbf83e3efc96eb04fd80cce4c8514a5fa Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 11 Sep 2001 15:17:40 -0400 Subject: updated testing --- Source/ctest.cxx | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/Source/ctest.cxx b/Source/ctest.cxx index 36009e5..7d55229 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -105,6 +105,7 @@ void ctest::ProcessDirectory(int &passed, int &failed) std::string name; std::vector args; cmRegularExpression var(this->m_RegExp.c_str()); + cmRegularExpression dartStuff("([\t\n ]*[\t ]*[\n]*)"); while ( fin ) { @@ -153,14 +154,22 @@ void ctest::ProcessDirectory(int &passed, int &failed) */ std::string output; int retVal; - + if (!cmSystemTools::RunCommand(testCommand.c_str(), output, retVal, false) || retVal != 0) { fprintf(stderr,"***Failed\n"); if (output != "") { - std::cerr << output.c_str() << "\n"; + if (dartStuff.find(output.c_str())) + { + cmSystemTools::ReplaceString(output, + dartStuff.match(1).c_str(),""); + } + if (output != "") + { + std::cerr << output.c_str() << "\n"; + } } failed++; } @@ -169,7 +178,15 @@ void ctest::ProcessDirectory(int &passed, int &failed) fprintf(stderr," Passed\n"); if (output != "") { - std::cerr << output.c_str() << "\n"; + if (dartStuff.find(output.c_str())) + { + cmSystemTools::ReplaceString(output, + dartStuff.match(1).c_str(),""); + } + if (output != "") + { + std::cerr << output.c_str() << "\n"; + } } passed++; } -- cgit v0.12