From: Mark Wielaard Date: Mon, 22 Jan 2024 13:08:30 +0000 (+0100) Subject: gdbserver_tests/filter_gdb.in: delete thread exiting X-Git-Tag: VALGRIND_3_23_0~202 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7aa63de01a3cda2a346f90be16bd29fd7b410c63;p=thirdparty%2Fvalgrind.git 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] --- 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/