[Cmake-commits] CMake branch, next, updated. v2.8.9-920-g4f50243

Rolf Eike Beer eike at sf-mail.de
Sun Sep 30 17:54:03 EDT 2012


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  4f5024356d010fbb47120f5706473d347e80eedb (commit)
       via  3636b7a317088e1e3546a5e3abc8ef3f2f0d83c1 (commit)
      from  7204509dfd3e7f87721a877bfce9ac53b2ccb700 (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=4f5024356d010fbb47120f5706473d347e80eedb
commit 4f5024356d010fbb47120f5706473d347e80eedb
Merge: 7204509 3636b7a
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Sun Sep 30 17:54:02 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Sep 30 17:54:02 2012 -0400

    Merge topic 'test-ctest-memcheck' into next
    
    3636b7a add more regex escaping for the 'CTestTestMemcheckUnknown' test


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3636b7a317088e1e3546a5e3abc8ef3f2f0d83c1
commit 3636b7a317088e1e3546a5e3abc8ef3f2f0d83c1
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Sun Sep 30 23:53:54 2012 +0200
Commit:     Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Sun Sep 30 23:53:54 2012 +0200

    add more regex escaping for the 'CTestTestMemcheckUnknown' test

diff --git a/Tests/CTestTestMemcheck/CMakeLists.txt b/Tests/CTestTestMemcheck/CMakeLists.txt
index 42a3f13..61faae3 100644
--- a/Tests/CTestTestMemcheck/CMakeLists.txt
+++ b/Tests/CTestTestMemcheck/CMakeLists.txt
@@ -24,6 +24,9 @@ endforeach ()
 
 file(TO_NATIVE_PATH "${CMAKE_COMMAND}" CMAKE_COMMAND_NATIVE)
 string(REPLACE "\\" "\\\\" CMAKE_COMMAND_NATIVE "{CMAKE_COMMAND_NATIVE}")
+string(REPLACE "(" "\\(" CMAKE_COMMAND_NATIVE "{CMAKE_COMMAND_NATIVE}")
+string(REPLACE ")" "\\)" CMAKE_COMMAND_NATIVE "{CMAKE_COMMAND_NATIVE}")
+string(REPLACE "+" "\\+" CMAKE_COMMAND_NATIVE "{CMAKE_COMMAND_NATIVE}")
 set_tests_properties(CTestTestMemcheckUnknown PROPERTIES
     PASS_REGULAR_EXPRESSION "Do not understand memory checker: ${CMAKE_COMMAND}\n(.*\n)?Error in read script: ${CMAKE_CURRENT_BINARY_DIR}/Unknown/test.cmake\n")
 

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

Summary of changes:
 Tests/CTestTestMemcheck/CMakeLists.txt |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list