summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmCTest.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 6a233bf..d669017 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -4029,14 +4029,15 @@ int cmCTest::RunCMakeAndTest(std::string* outstring)
}
if ( retVal )
{
- cmSystemTools::Error("Building of project failed\n");
if(outstring)
{
+ *outstring += "Building of project failed\n";
*outstring += output;
*outstring += "\n";
}
else
{
+ std::cerr << "Building of project failed\n";
std::cout << output << "\n";
}
// return to the original directory