From: Simon Marchi via Gdb-patches <gdb-patches@sourceware.org>
To: Tom de Vries <tdevries@suse.de>, gdb-patches@sourceware.org
Subject: Re: [PATCH][gdb/testsuite] Fix gdb.arch/i386-gnu-cfi.exp
Date: Thu, 28 Jan 2021 10:08:29 -0500 [thread overview]
Message-ID: <77788279-b609-82f7-e39f-02fbd3e8542a@polymtl.ca> (raw)
In-Reply-To: <20210126180411.GA7951@delia>
On 2021-01-26 1:04 p.m., Tom de Vries wrote:
> Hi,
>
> When running test-case gdb.arch/i386-gnu-cfi.exp with target board unix/-m32, I get:
> ...
> (gdb) up 3^M
> 79 abort.c: No such file or directory.^M
> (gdb) FAIL: gdb.arch/i386-gnu-cfi.exp: shift up to the modified frame
> ...
>
> The preceding backtrace looks like this:
> ...
> (gdb) bt^M
> #0 0xf7fcf549 in __kernel_vsyscall ()^M
> #1 0xf7ce8896 in __libc_signal_restore_set (set=0xffffc3bc) at \
> ../sysdeps/unix/sysv/linux/internal-signals.h:104^M
> #2 __GI_raise (sig=6) at ../sysdeps/unix/sysv/linux/raise.c:47^M
> #3 0xf7cd0314 in __GI_abort () at abort.c:79^M
> #4 0x0804919f in gate (gate=0x8049040 <abort@plt>, data=0x0) at gate.c:3^M
> #5 0x08049176 in main () at i386-gnu-cfi.c:27^M
> ...
> with function gate at position #4, while on another system where the test passes,
> I see instead:
> ...
> (gdb) PASS: gdb.arch/i386-gnu-cfi.exp: continue to abort()
> backtrace^M
> (gdb) PASS: gdb.arch/i386-gnu-cfi.exp: backtrace
> ...
> function gate at position #3.
>
> Fix this by capturing the position of function gate in the backtrace, and
> using that in the rest of the test instead of hardcoded constant 3.
>
> Tested on x86_64-linux.
>
> Any comments?
>
> Thanks,
> - Tom
>
> [gdb/testsuite] Fix gdb.arch/i386-gnu-cfi.exp
>
> gdb/testsuite/ChangeLog:
>
> 2021-01-26 Tom de Vries <tdevries@suse.de>
>
> * gdb.arch/i386-gnu-cfi.exp: Capturing the position of function gate
> in the backtrace, and use that in the rest of the test instead of
> hardcoded constant 3.
>
> ---
> gdb/testsuite/gdb.arch/i386-gnu-cfi.exp | 22 +++++++++++++++++-----
> 1 file changed, 17 insertions(+), 5 deletions(-)
>
> diff --git a/gdb/testsuite/gdb.arch/i386-gnu-cfi.exp b/gdb/testsuite/gdb.arch/i386-gnu-cfi.exp
> index 4228140fc35..8f6fbb8bf44 100644
> --- a/gdb/testsuite/gdb.arch/i386-gnu-cfi.exp
> +++ b/gdb/testsuite/gdb.arch/i386-gnu-cfi.exp
> @@ -60,19 +60,31 @@ gdb_test_multiple {} "continue to abort()" {
>
> # Backtrace would crash before.
>
> -gdb_test "bt" \
> - "main \\(\\) at .*${testfile}.c.*" \
> - "backtrace"
> +set gate_n ""
> +set backtrace_re \
> + [multi_line \
> + "" \
> + "#($decimal) *$hex in gate \[^\r\n\]*" \
> + "#$decimal *$hex in main \\(\\) at .*${testfile}.c.*"]
> +gdb_test_multiple "backtrace" "" {
> + -re -wrap $backtrace_re {
> + set gate_n $expect_out(1,string)
> + pass $gdb_test_name
> + }
> +}
Please add a comment above this describing the intent, finding the frame number
for function "gate".
> +if { $gate_n == "" } {
> + return -1
> +}
>
> # Check we see the inserted `DW_CFA_GNU_negative_offset_extended' CFI.
> # We see there the original CFI-stored filename `gate.c'.
>
> -gdb_test "up 3" \
> +gdb_test "up $gate_n" \
> "gate \\(\[^()\]*\\) at .*gate.c.*" \
> "shift up to the modified frame"
Since $gate_n is the frame number, perhaps use the "frame" command instead?
It still works with "up" because frame #0 is initially selected, but using
"frame" would be more robust.
Otherwise, LGTM.
Simon
prev parent reply other threads:[~2021-01-28 15:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-26 18:04 Tom de Vries
2021-01-28 15:08 ` Simon Marchi via Gdb-patches [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=77788279-b609-82f7-e39f-02fbd3e8542a@polymtl.ca \
--to=gdb-patches@sourceware.org \
--cc=simon.marchi@polymtl.ca \
--cc=tdevries@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox