Blame SOURCES/valgrind-3.18.1-gdbserver_tests-hwcap.patch

4db4a6
commit 64ab89162906d5b9e2de6c3afe476fec861ef7ec
4db4a6
Author: Mark Wielaard <mark@klomp.org>
4db4a6
Date:   Tue Nov 2 14:27:45 2021 +0100
4db4a6
4db4a6
    gdbserver_tests: Filter out glibc hwcaps libc.so
4db4a6
    
4db4a6
    On some systems the gdbserver_tests would fail because the filter
4db4a6
    for the optimized hwcaps subdir didn't match because the file is
4db4a6
    called slightly differently, with the version number before .so
4db4a6
    instead of after. For example: /lib64/glibc-hwcaps/power9/libc-2.28.so
4db4a6
    
4db4a6
    Add one extra filter for this pattern.
4db4a6
4db4a6
diff --git a/gdbserver_tests/filter_gdb.in b/gdbserver_tests/filter_gdb.in
4db4a6
index d0c94f3f1..b753e0168 100755
4db4a6
--- a/gdbserver_tests/filter_gdb.in
4db4a6
+++ b/gdbserver_tests/filter_gdb.in
4db4a6
@@ -134,6 +134,7 @@ s/in \(.__\)\{0,1\}select () from \/.*$/in syscall .../
4db4a6
 /^   from \/lib\/libc.so.*$/d
4db4a6
 /^   from \/lib64\/libc.so.*$/d
4db4a6
 /^   from \/lib64\/.*\/libc.so.*$/d
4db4a6
+/^   from \/lib64\/.*\/libc-.*.so/d
4db4a6
 
4db4a6
 #       and yet another (gdb 7.0 way) to get a system call
4db4a6
 s/in select ()$/in syscall .../