summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2023-11-20 13:09:29 (GMT)
committerKitware Robot <kwrobot@kitware.com>2023-11-20 13:10:37 (GMT)
commit4c1a6f2e238eccd2f911527293b2111cc0a45716 (patch)
tree0fe13f85a6d9660266463ad0c3b0e1a3ae3a9be1 /Source/CTest
parent9f155a38db0e08548f62e793e799d10e2ee612b5 (diff)
parentcdd741ebf997ffdbf7408e6e8ec5701c2389ffda (diff)
downloadCMake-4c1a6f2e238eccd2f911527293b2111cc0a45716.zip
CMake-4c1a6f2e238eccd2f911527293b2111cc0a45716.tar.gz
CMake-4c1a6f2e238eccd2f911527293b2111cc0a45716.tar.bz2
Merge topic 'ci-fedora-39'
cdd741ebf9 Merge branch 'backport-ci-fedora-39' into ci-fedora-39 9283b20659 ci: Suppress CPack/RPM tests pending fix for Fedora 39 18145e8745 ci: Update FindMPI test environment for mpich on Fedora 39 a8be80ccf2 ci: Drop now-unnecessary Clang rules for CXXModules tests 99238b23e9 ci: use Fedora 39 images and environments 57eadec617 ci: update Linux image to Fedora 39 653262162c clang-tidy module: Update to build against LLVM/Clang 17 2cf9a65835 clang-tidy: ignore warnings new in version 17 ... Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8983
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestMemCheckHandler.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CTest/cmCTestMemCheckHandler.cxx b/Source/CTest/cmCTestMemCheckHandler.cxx
index b51de84..b1afdc0 100644
--- a/Source/CTest/cmCTestMemCheckHandler.cxx
+++ b/Source/CTest/cmCTestMemCheckHandler.cxx
@@ -962,15 +962,15 @@ bool cmCTestMemCheckHandler::ProcessMemCheckValgrindOutput(
"== .*[0-9,]+ bytes in [0-9,]+ blocks are still reachable"
" in loss record [0-9,]+ of [0-9,]+");
cmsys::RegularExpression vgUMC(
- "== .*Conditional jump or move depends on uninitialised value\\(s\\)");
+ "== .*Conditional jump or move depends on uninitiali[sz]ed value\\(s\\)");
cmsys::RegularExpression vgUMR1(
- "== .*Use of uninitialised value of size [0-9,]+");
+ "== .*Use of uninitiali[sz]ed value of size [0-9,]+");
cmsys::RegularExpression vgUMR2("== .*Invalid read of size [0-9,]+");
cmsys::RegularExpression vgUMR3("== .*Jump to the invalid address ");
cmsys::RegularExpression vgUMR4(
"== .*Syscall param .* contains "
- "uninitialised or unaddressable byte\\(s\\)");
- cmsys::RegularExpression vgUMR5("== .*Syscall param .* uninitialised");
+ "uninitiali[sz]ed or unaddressable byte\\(s\\)");
+ cmsys::RegularExpression vgUMR5("== .*Syscall param .* uninitiali[sz]ed");
cmsys::RegularExpression vgIPW("== .*Invalid write of size [0-9,]+");
cmsys::RegularExpression vgABR("== .*pthread_mutex_unlock: mutex is "
"locked by a different thread");