[Cmake-commits] CMake branch, next, updated. v2.8.6-1659-g9602ac7

Brad King brad.king at kitware.com
Tue Oct 25 08:35:41 EDT 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  9602ac7636b79fc71727558ede2838ccf7d04dbc (commit)
       via  26b6794fd5e570a4262a2adcf0c3c48d2c19e6e5 (commit)
      from  56ef94c5c4adc183d56dd7ac43234991e9912291 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9602ac7636b79fc71727558ede2838ccf7d04dbc
commit 9602ac7636b79fc71727558ede2838ccf7d04dbc
Merge: 56ef94c 26b6794
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Oct 25 08:35:40 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Oct 25 08:35:40 2011 -0400

    Merge topic 'ctest-memcheck-log-newline-issue-12538' into next
    
    26b6794 Source/cmCTest.cxx: Add missing newline (#12538)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=26b6794fd5e570a4262a2adcf0c3c48d2c19e6e5
commit 26b6794fd5e570a4262a2adcf0c3c48d2c19e6e5
Author:     Bernhard Walle <walle at corscience.de>
AuthorDate: Tue Oct 25 11:15:21 2011 +0200
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue Oct 25 08:34:42 2011 -0400

    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 at corscience.de>

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

-----------------------------------------------------------------------

Summary of changes:
 Source/cmCTest.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list