Bug 406357 - valgrind 3.15.0-RC1 fails gdbserver_tests because of gdb output change
Summary: valgrind 3.15.0-RC1 fails gdbserver_tests because of gdb output change
Status: RESOLVED FIXED
Alias: None
Product: valgrind
Classification: Developer tools
Component: general (show other bugs)
Version: 3.15 SVN
Platform: Other Linux
: NOR minor
Target Milestone: ---
Assignee: Julian Seward
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-04-09 13:06 UTC by Roger Light
Modified: 2019-04-10 17:34 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Roger Light 2019-04-09 13:06:01 UTC
On Ubuntu 19.04 amd64 / gdb 8.2.90.20190311 the output format of gdb has changed from

    Reading symbols from <exe>...done.

to

    Reading symbols from <exe>...

This results in a raft of stdoutB errors in gdbserver_tests.

This fixes it:

diff --git a/gdbserver_tests/filter_gdb b/gdbserver_tests/filter_gdb
index 05bbe4c54..d0ab11ddb 100755
--- a/gdbserver_tests/filter_gdb
+++ b/gdbserver_tests/filter_gdb
@@ -92,7 +92,7 @@ sed -e '/Remote debugging using/,/vgdb launched process attached/d'
     -e 's/^Thread .... received /Program received /'                                                  \
     -e 's/#[0-9]\(  0x........ in sleeper_or_burner\)/#.\1/'                                          \
     -e 's/\(#0  0x........ in do_burn ()\) at sleepers.c:41/\1/'                                      \
-    -e '/^Reading symbols from .*\.\.\.done\./d'                                                      \
+    -e '/^Reading symbols from .*\.\.\.\(done\.\)\?/d'                                                \
     -e '/^Loaded symbols for .*$/d'                                                                   \
     -e '/^Current language.*/d'                                                                       \
     -e '/^The current source language is.*/d'                                                         \
Comment 1 Mark Wielaard 2019-04-10 17:34:47 UTC
commit 0c8be9bbede189ec580ec270521811766429595f
Author: Mark Wielaard <mark@klomp.org>
Date:   Wed Apr 10 01:28:24 2019 +0200

    gdbserver_tests fails because of gdb output change.
    
    The 'done.' in "Reading symbols from <exe>...done." is optional.
    
    https://bugs.kde.org/show_bug.cgi?id=406357
    
    Reported-by: Roger Light <roger@atchoo.org>