]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Extend filter_vgdb for GNU gdb (Debian 10.1-2) 10.1.90.20210103-git
authorMark Wielaard <mark@klomp.org>
Fri, 1 Oct 2021 20:44:16 +0000 (22:44 +0200)
committerMark Wielaard <mark@klomp.org>
Fri, 1 Oct 2021 20:46:30 +0000 (22:46 +0200)
On Debian 11.0 arm64 gdb will emit a similar (stray) ENOTTY message
as on SLES11, but for _exit.c instead of rtld.c.

gdbserver_tests/filter_vgdb

index 679ca4b31cec7b49b5f588dd3139a9c119c8be12..2a9e90b7bef769425d5663ac060c83f6d6dc4aa4 100755 (executable)
@@ -19,6 +19,8 @@ sed -e '/relaying data between gdb and process/d'                        \
 # filter some debuginfo problems with ld.so and SLES11
 sed -e '/^1    rtld.c: No such file or directory\./d' |
 sed -e '/rtld.c: Inappropriate ioctl for device\./d' |
+# similar for Debian 11.0 arm64
+sed -e '/_exit.c: Inappropriate ioctl for device\./d' |
 
 # and filter out any remaining empty lines
 sed -e '/^$/d'