From 7aa63de01a3cda2a346f90be16bd29fd7b410c63 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Mon, 22 Jan 2024 14:08:30 +0100 Subject: [PATCH] gdbserver_tests/filter_gdb.in: delete thread exiting The hginfo testcase would fail with GDB 14.1 because it would output an extra line saying: [Thread .... exited] --- gdbserver_tests/filter_gdb.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gdbserver_tests/filter_gdb.in b/gdbserver_tests/filter_gdb.in index 16186dfe2c..6c85284b75 100755 --- a/gdbserver_tests/filter_gdb.in +++ b/gdbserver_tests/filter_gdb.in @@ -65,6 +65,9 @@ s/Thread [0-9][0-9]*/Thread ..../g # delete thread switches /\[Switching to Thread ....\]/d +# delete thread exiting +/\[Thread .... exited\]/d + # ??? Probably we had a 'Switching ' message in front of # a frame line ? s/\(\[Switching to thread [1234] (Thread ....)\]\)#0/\1\n#0/ -- 2.47.2