summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-09-23 17:49:57 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-09-23 17:49:57 (GMT)
commitda623cd0b4d828ab0a6a42fa0540cb72047eb808 (patch)
tree67bd1590e2b95834e9b5f9050d8e8ef4afb0f0eb
parente15ebb625508fc9b71b0b4f0d52b3ea0feef3a85 (diff)
downloadCMake-da623cd0b4d828ab0a6a42fa0540cb72047eb808.zip
CMake-da623cd0b4d828ab0a6a42fa0540cb72047eb808.tar.gz
CMake-da623cd0b4d828ab0a6a42fa0540cb72047eb808.tar.bz2
ENH: Add missing newline Bug #185 - CTest exceptions output is missing new line
-rw-r--r--Source/cmCTest.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 6beaa59..e36d295 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -1790,6 +1790,7 @@ void cmCTest::ProcessDirectory(std::vector<std::string> &passed,
fprintf(stderr,"Other");
cres.m_Status = cmCTest::OTHER_FAULT;
}
+ fprintf(stderr,"\n");
}
else if ( res == cmsysProcess_State_Error )
{