From: Paul F. <pa...@so...> - 2025-04-18 10:45:08
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=13f422b816ec4f6cf3ede836f782e21a67f01124 commit 13f422b816ec4f6cf3ede836f782e21a67f01124 Author: Paul Floyd <pj...@wa...> Date: Fri Apr 18 12:42:55 2025 +0200 Regtest: gdbserver filter another auto-load warning Seen on arm64 with GDB 16 Diff: --- gdbserver_tests/filter_vgdb.in | 1 + 1 file changed, 1 insertion(+) diff --git a/gdbserver_tests/filter_vgdb.in b/gdbserver_tests/filter_vgdb.in index b32be68973..50d7a9ff6d 100755 --- a/gdbserver_tests/filter_vgdb.in +++ b/gdbserver_tests/filter_vgdb.in @@ -42,6 +42,7 @@ $SED -e '/warning: File .*valgrind-monitor.py.*declined.*/d' | # and remove loading error messages when python scripts haven't # been installed yet (running against vg-in-place) $SED -e '/warning: Missing auto-load script.*/d' | +$SED -e '/warning: Unsupported auto-load script.*/d' | $SED -e '/of file .*vgpreload.*so.*/d' | $SED -e '/Use.*info auto-load python-scripts.*/d' | $SED -e '/warning: Invalid entry in .debug_gdb_scripts section/d' | |