summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorAlexandru Ciobanu <alex@rogue-research.com>2012-02-13 04:26:05 (GMT)
committerBrad King <brad.king@kitware.com>2012-03-09 14:32:28 (GMT)
commitea4416cf7bca8b3123a5b26d159f7164d727a8e6 (patch)
treef40bb0e068b3ea92cf922af585844c2e78892715 /Source/CTest
parent62952bc9b451b2b658c20756fc4c714945d84b45 (diff)
downloadCMake-ea4416cf7bca8b3123a5b26d159f7164d727a8e6.zip
CMake-ea4416cf7bca8b3123a5b26d159f7164d727a8e6.tar.gz
CMake-ea4416cf7bca8b3123a5b26d159f7164d727a8e6.tar.bz2
CTest: Match valgrind errors with "points to" (#12922)
Teach CTest to match valgrind errors of the format "Syscall param ... points to uninitialised byte(s)".
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestMemCheckHandler.cxx2
1 files changed, 1 insertions, 1 deletions
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,]+");