From a23c890c442bc537db64770b5200fe8e50381094 Mon Sep 17 00:00:00 2001 From: Philippe Waroquiers Date: Sun, 14 Apr 2024 22:54:49 +0200 Subject: [PATCH] Missing edit of filter_gdb.in .exp files were updated to correspond to GDB 15, filter_gdb being responsible to transform old GDB output to newly expected output. Sadly, I edited filter_gdb instead of filter_gdb.in Tests should succeed again with older GDB. --- gdbserver_tests/filter_gdb.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gdbserver_tests/filter_gdb.in b/gdbserver_tests/filter_gdb.in index d6c39d36f..34ab9d359 100755 --- a/gdbserver_tests/filter_gdb.in +++ b/gdbserver_tests/filter_gdb.in @@ -56,6 +56,12 @@ s/^\[?1034hReading symbols/Reading symbols/ # Anonymise pid numbers s/pid [0-9][0-9]*/pid ..../g +# Align the 'delete' prompt to the GDB 15 prompt +s/Delete all breakpoints?/Delete all breakpoints, watchpoints, tracepoints, and catchpoints?/ + +# Align the 'remote failure reply' string to the GDB 15 behaviour. +s/remote failure reply 'E\./remote failure reply '/ + # filter 'remote target killed' messages (produced by gdb >= 8.2) /(Remote target) killed/d -- 2.11.4.GIT