summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.cxx
diff options
context:
space:
mode:
authorBernhard Walle <walle@corscience.de>2011-10-25 09:15:21 (GMT)
committerBrad King <brad.king@kitware.com>2011-10-25 12:34:42 (GMT)
commit26b6794fd5e570a4262a2adcf0c3c48d2c19e6e5 (patch)
tree8d5281fbbca6f58da89f74c3e00ae899ba0e70a0 /Source/cmCTest.cxx
parent676fb3b2acea40f5eae7d4badc9dbea2366ce2da (diff)
downloadCMake-26b6794fd5e570a4262a2adcf0c3c48d2c19e6e5.zip
CMake-26b6794fd5e570a4262a2adcf0c3c48d2c19e6e5.tar.gz
CMake-26b6794fd5e570a4262a2adcf0c3c48d2c19e6e5.tar.bz2
Source/cmCTest.cxx: Add missing newline (#12538)
In the log entry, the newline is missing. The output without the newline character is a bit strange, like SetCTestConfigurationFromCMakeVariable:MemoryCheckCommand:CTEST_MEMORYCHECK_COMMANDSetCTestConfiguration:MemoryCheckCommand:/usr/bin/valgrind Instead of SetCTestConfigurationFromCMakeVariable:MemoryCheckCommand:CTEST_MEMORYCHECK_COMMAND SetCTestConfiguration:MemoryCheckCommand:/usr/bin/valgrind This patch changes this to add a newline. Signed-off-by: Bernhard Walle <walle@corscience.de>
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 702ba10..e2e171a 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -2801,7 +2801,7 @@ bool cmCTest::SetCTestConfigurationFromCMakeVariable(cmMakefile* mf,
}
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT,
"SetCTestConfigurationFromCMakeVariable:"
- << dconfig << ":" << cmake_var);
+ << dconfig << ":" << cmake_var << std::endl);
this->SetCTestConfiguration(dconfig, ctvar);
return true;
}