From 4d5146492cbbe603e91af57a467aeea41112d5c9 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Thu, 9 Nov 2023 23:42:37 +0100 Subject: [PATCH] filter out dl-start.S: No such file or directory in gdbserver_tests On some aarch64 GNU/Linux systems gdb will be unable to find the dl-start.S file and complain. Filter out this message to make the tests pass. --- gdbserver_tests/filter_vgdb.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gdbserver_tests/filter_vgdb.in b/gdbserver_tests/filter_vgdb.in index 7c42a1849..b71835cda 100755 --- a/gdbserver_tests/filter_vgdb.in +++ b/gdbserver_tests/filter_vgdb.in @@ -14,6 +14,8 @@ $dir/../tests/filter_addresses | # are installed but not system source then these # errors get produced by GDB $SED -e '/\(rtld_start.S\|kill.S\|_exit.S\|_select.S\): No such file or directory/d' | +# Likewise on some aarch64 GNU/Linux systems for dl-start.S +$SED -e '/dl-start.S: No such file or directory/d' | # filter vgdb process id, # pid -- 2.11.4.GIT