From 3961c6a81c7a609a8f6767f010f28cd04d90ec4b Mon Sep 17 00:00:00 2001 From: Paul Floyd Date: Sat, 27 Jan 2024 17:07:30 +0100 Subject: [PATCH] regtest gdbserver: add an extra filter for Raspberry Pi OS select --- gdbserver_tests/filter_gdb.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdbserver_tests/filter_gdb.in b/gdbserver_tests/filter_gdb.in index 6c85284b7..7fb2f5829 100755 --- a/gdbserver_tests/filter_gdb.in +++ b/gdbserver_tests/filter_gdb.in @@ -123,11 +123,11 @@ s/in kill ().*$/in syscall .../ # anonymise syscall on ppc64 (bugzilla #284305) s/in .*kill ().*$/in syscall .../ - s/in _dl_sysinfo_int80 ()/in syscall .../ /^ from \/lib\/ld-linux.so.*$/d s/\(0x........\) in ?? () from \/lib.*$/\1 in syscall .../ s/\(0x........\) in ?? ()$/\1 in syscall .../ +s/in __select64 (.*/in syscall .../ # 4 expressions to cover glibc 2.27 way to do a select, such as # * 1 Thread 5548 (tid 1 VgTs_WaitSys) 0x0000000004f6203f in __GI___select ( -- 2.11.4.GIT