[Cmake-commits] CMake branch, next, updated. v2.8.7-3134-g778708b

Brad King brad.king at kitware.com
Fri Mar 9 09:36:05 EST 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  778708b0459006b8c3fc1492430a2ada82f152cd (commit)
       via  ea4416cf7bca8b3123a5b26d159f7164d727a8e6 (commit)
      from  0e3124564216e0a80530a6daca009620834062d4 (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=778708b0459006b8c3fc1492430a2ada82f152cd
commit 778708b0459006b8c3fc1492430a2ada82f152cd
Merge: 0e31245 ea4416c
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Mar 9 09:36:03 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Mar 9 09:36:03 2012 -0500

    Merge topic 'ctest-match-valgrind' into next
    
    ea4416c CTest: Match valgrind errors with "points to" (#12922)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ea4416cf7bca8b3123a5b26d159f7164d727a8e6
commit ea4416cf7bca8b3123a5b26d159f7164d727a8e6
Author:     Alexandru Ciobanu <alex at rogue-research.com>
AuthorDate: Sun Feb 12 23:26:05 2012 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Mar 9 09:32:28 2012 -0500

    CTest: Match valgrind errors with "points to" (#12922)
    
    Teach CTest to match valgrind errors of the format
    "Syscall param ... points to uninitialised byte(s)".

diff --git a/Source/CTest/cmCTestMemCheckHandler.cxx b/Source/CTest/cmCTestMemCheckHandler.cxx
index f0a98f9..035aaa9 100644
--- a/Source/CTest/cmCTestMemCheckHandler.cxx
+++ b/Source/CTest/cmCTestMemCheckHandler.cxx
@@ -679,7 +679,7 @@ bool cmCTestMemCheckHandler::ProcessMemCheckValgrindOutput(
     " bytes in [0-9,]+ blocks are definitely lost"
     " in loss record [0-9,]+ of [0-9,]+");
   cmsys::RegularExpression vgPAR(
-    "== .*Syscall param .* contains unaddressable byte\\(s\\)");
+    "== .*Syscall param .* (contains|points to) unaddressable byte\\(s\\)");
   cmsys::RegularExpression vgMPK1(
     "== .*[0-9,]+ bytes in [0-9,]+ blocks are possibly lost in"
     " loss record [0-9,]+ of [0-9,]+");

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list