|
From: Paul F. <pa...@so...> - 2023-02-03 18:12:20
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=dfaf01873391977d2863da0c227a8b363f762019 commit dfaf01873391977d2863da0c227a8b363f762019 Author: Paul Floyd <pj...@wa...> Date: Fri Feb 3 19:10:50 2023 +0100 DRD regtesat: update suppression file for std_threads2 On RHEL 7.6 ARM glibc 2.17 is used which doesn't match the 2.2* wildard, so widen the wildcard to just 2.* Diff: --- drd/tests/std_thread2.supp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drd/tests/std_thread2.supp b/drd/tests/std_thread2.supp index 2e41bac503..69b210c469 100644 --- a/drd/tests/std_thread2.supp +++ b/drd/tests/std_thread2.supp @@ -11,13 +11,13 @@ { pthread_create drd:ConflictingAccess - fun:pthread_create@@GLIBC_2.2* + fun:pthread_create@@GLIBC_2.* } { pthread_create drd:ConflictingAccess fun:allocate_stack - fun:pthread_create@@GLIBC_2.2* + fun:pthread_create@@GLIBC_2.* } { drd-gcc-runtims |