Browse Source

Merge topic 'ctest-memcheck-log-newline-issue-12538'

26b6794 Source/cmCTest.cxx: Add missing newline (#12538)
David Cole 14 years ago
parent
commit
9d87a9251e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmCTest.cxx

+ 1 - 1
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;
 }