public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb/gdb-12-branch] [gdb/testsuite] Fix gdb.dwarf2/dw2-lines.exp for m32 pie
@ 2022-04-13 12:29 Tom de Vries
  0 siblings, 0 replies; only message in thread
From: Tom de Vries @ 2022-04-13 12:29 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=4f538bcbb7b367c17e9c288fc506d650e1c8d7c8

commit 4f538bcbb7b367c17e9c288fc506d650e1c8d7c8
Author: Tom de Vries <tdevries@suse.de>
Date:   Wed Apr 13 14:29:00 2022 +0200

    [gdb/testsuite] Fix gdb.dwarf2/dw2-lines.exp for m32 pie
    
    As reported in PR29043, when running test-case gdb.dwarf2/dw2-lines.exp with
    target board unix/-m32/-fPIE/-pie, we run into:
    ...
    Breakpoint 2, 0x56555540 in bar ()^M
    (gdb) PASS: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=2: ldw=32: \
      continue to breakpoint: foo \(1\)
    next^M
    Single stepping until exit from function bar,^M
    which has no line number information.^M
    0x56555587 in main ()^M
    (gdb) FAIL: gdb.dwarf2/dw2-lines.exp: cv=2: cdw=32: lv=2: ldw=32: \
      next to foo (2)
    ...
    
    The problem is that the bar breakpoint ends up at an unexpected location
    because:
    - the synthetic debug info is incomplete and doesn't provide line info
      for the prologue part of the function, so consequently gdb uses the i386
      port prologue skipper to get past the prologue
    - the i386 port prologue skipper doesn't get past a get_pc_thunk call.
    
    Work around this in the test-case by breaking on bar_label instead.
    
    Tested on x86_64-linux with target boards unix, unix/-m32, unix/-fPIE/-pie and
    unix/-m32/-fPIE/-pie.

Diff:
---
 gdb/testsuite/gdb.dwarf2/dw2-lines.exp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdb/testsuite/gdb.dwarf2/dw2-lines.exp b/gdb/testsuite/gdb.dwarf2/dw2-lines.exp
index c1be18aa88c..1fd7b768372 100644
--- a/gdb/testsuite/gdb.dwarf2/dw2-lines.exp
+++ b/gdb/testsuite/gdb.dwarf2/dw2-lines.exp
@@ -114,7 +114,7 @@ proc test_1 { _cv _cdw64 _lv _ldw64 {_string_form ""}} {
 	return -1
     }
 
-    gdb_breakpoint "bar"
+    gdb_breakpoint "bar_label"
     gdb_continue_to_breakpoint "foo \\(1\\)"
 
     gdb_test "next" "foo \\(2\\).*" "next to foo (2)"


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-04-13 12:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-13 12:29 [binutils-gdb/gdb-12-branch] [gdb/testsuite] Fix gdb.dwarf2/dw2-lines.exp for m32 pie Tom de Vries

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).