public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH][gdb/testsuite] Handle SIGILL in two gdb.arch powerpc test-cases
@ 2021-10-29 19:45 Tom de Vries
  2021-11-02 15:41 ` will schmidt
  2021-11-02 17:06 ` Kevin Buettner
  0 siblings, 2 replies; 3+ messages in thread
From: Tom de Vries @ 2021-10-29 19:45 UTC (permalink / raw)
  To: gdb-patches

Hi,

On powerpc64le-linux, with test-case gdb.arch/powerpc-addpcis.exp I run into
SIGILL:
...
(gdb) PASS: gdb.arch/powerpc-addpcis.exp: get hexadecimal valueof "$r3"
stepi^M
^M
Program terminated with signal SIGILL, Illegal instruction.^M
The program no longer exists.^M
(gdb) PASS: gdb.arch/powerpc-addpcis.exp: set r4
...
because it's a power9 insn, and I'm running on a power8 machine.

Fix this by handling the SIGILL.  Likewise in gdb.arch/powerpc-lnia.exp.

Tested on powerpc64le-linux.

Any comments?

Thanks,
- Tom

[gdb/testsuite] Handle SIGILL in two gdb.arch powerpc test-cases

---
 gdb/testsuite/gdb.arch/powerpc-addpcis.exp | 14 +++++++++++++-
 gdb/testsuite/gdb.arch/powerpc-lnia.exp    | 14 +++++++++++++-
 2 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/gdb/testsuite/gdb.arch/powerpc-addpcis.exp b/gdb/testsuite/gdb.arch/powerpc-addpcis.exp
index d1bc7f49ce6..ff7052ce475 100644
--- a/gdb/testsuite/gdb.arch/powerpc-addpcis.exp
+++ b/gdb/testsuite/gdb.arch/powerpc-addpcis.exp
@@ -50,7 +50,19 @@ gdb_breakpoint $bp1
 gdb_breakpoint $bp2
 gdb_breakpoint $bp3
 
-gdb_test "stepi" "" "set r3 "
+set insn_supported 1
+gdb_test_multiple "stepi" "set r3" {
+    -re "Program received signal SIGILL, Illegal instruction\\..*" {
+	set insn_supported 0
+    }
+    -re -wrap "" {
+	pass $gdb_test_name
+    }
+}
+if { ! $insn_supported } {
+    unsupported "illegal instruction"
+    return
+}
 set check_r3 [get_hexadecimal_valueof "\$r3" "default0"]
 gdb_test "stepi" "" "set r4"
 set check_r4 [get_hexadecimal_valueof "\$r4" "default0"]
diff --git a/gdb/testsuite/gdb.arch/powerpc-lnia.exp b/gdb/testsuite/gdb.arch/powerpc-lnia.exp
index 0f56d834046..4ab4f8d92be 100644
--- a/gdb/testsuite/gdb.arch/powerpc-lnia.exp
+++ b/gdb/testsuite/gdb.arch/powerpc-lnia.exp
@@ -54,7 +54,19 @@ gdb_breakpoint $bp3
 
 # single-step through the lnia instructions, and retrieve the
 # register values as we proceed.
-gdb_test "stepi" "" "set r3"
+set insn_supported 1
+gdb_test_multiple "stepi" "set r3" {
+    -re "Program received signal SIGILL, Illegal instruction\\..*" {
+	set insn_supported 0
+    }
+    -re -wrap "" {
+	pass $gdb_test_name
+    }
+}
+if { ! $insn_supported } {
+    unsupported "illegal instruction"
+    return
+}
 set check_r3 [get_hexadecimal_valueof "\$r3" "default0"]
 gdb_test "stepi" "" "set r4"
 set check_r4 [get_hexadecimal_valueof "\$r4" "default0"]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH][gdb/testsuite] Handle SIGILL in two gdb.arch powerpc test-cases
  2021-10-29 19:45 [PATCH][gdb/testsuite] Handle SIGILL in two gdb.arch powerpc test-cases Tom de Vries
@ 2021-11-02 15:41 ` will schmidt
  2021-11-02 17:06 ` Kevin Buettner
  1 sibling, 0 replies; 3+ messages in thread
From: will schmidt @ 2021-11-02 15:41 UTC (permalink / raw)
  To: Tom de Vries, gdb-patches

On Fri, 2021-10-29 at 21:45 +0200, Tom de Vries via Gdb-patches wrote:
> Hi,
> 
> On powerpc64le-linux, with test-case gdb.arch/powerpc-addpcis.exp I
> run into
> SIGILL:
> ...
> (gdb) PASS: gdb.arch/powerpc-addpcis.exp: get hexadecimal valueof
> "$r3"
> stepi^M
> ^M
> Program terminated with signal SIGILL, Illegal instruction.^M
> The program no longer exists.^M
> (gdb) PASS: gdb.arch/powerpc-addpcis.exp: set r4
> ...
> because it's a power9 insn, and I'm running on a power8 machine.
> 
> Fix this by handling the SIGILL.  Likewise in gdb.arch/powerpc-
> lnia.exp.

> 
> Tested on powerpc64le-linux.
> 
> Any comments?


This looks good to me.  Thanks for cleaning these up. :-)

Thanks
-Will



> 
> Thanks,
> - Tom
> 
> [gdb/testsuite] Handle SIGILL in two gdb.arch powerpc test-cases
> 
> ---
>  gdb/testsuite/gdb.arch/powerpc-addpcis.exp | 14 +++++++++++++-
>  gdb/testsuite/gdb.arch/powerpc-lnia.exp    | 14 +++++++++++++-
>  2 files changed, 26 insertions(+), 2 deletions(-)
> 
> diff --git a/gdb/testsuite/gdb.arch/powerpc-addpcis.exp
> b/gdb/testsuite/gdb.arch/powerpc-addpcis.exp
> index d1bc7f49ce6..ff7052ce475 100644
> --- a/gdb/testsuite/gdb.arch/powerpc-addpcis.exp
> +++ b/gdb/testsuite/gdb.arch/powerpc-addpcis.exp
> @@ -50,7 +50,19 @@ gdb_breakpoint $bp1
>  gdb_breakpoint $bp2
>  gdb_breakpoint $bp3
> 
> -gdb_test "stepi" "" "set r3 "
> +set insn_supported 1
> +gdb_test_multiple "stepi" "set r3" {
> +    -re "Program received signal SIGILL, Illegal instruction\\..*" {
> +	set insn_supported 0
> +    }
> +    -re -wrap "" {
> +	pass $gdb_test_name
> +    }
> +}
> +if { ! $insn_supported } {
> +    unsupported "illegal instruction"
> +    return
> +}
>  set check_r3 [get_hexadecimal_valueof "\$r3" "default0"]
>  gdb_test "stepi" "" "set r4"
>  set check_r4 [get_hexadecimal_valueof "\$r4" "default0"]
> diff --git a/gdb/testsuite/gdb.arch/powerpc-lnia.exp
> b/gdb/testsuite/gdb.arch/powerpc-lnia.exp
> index 0f56d834046..4ab4f8d92be 100644
> --- a/gdb/testsuite/gdb.arch/powerpc-lnia.exp
> +++ b/gdb/testsuite/gdb.arch/powerpc-lnia.exp
> @@ -54,7 +54,19 @@ gdb_breakpoint $bp3
> 
>  # single-step through the lnia instructions, and retrieve the
>  # register values as we proceed.
> -gdb_test "stepi" "" "set r3"
> +set insn_supported 1
> +gdb_test_multiple "stepi" "set r3" {
> +    -re "Program received signal SIGILL, Illegal instruction\\..*" {
> +	set insn_supported 0
> +    }
> +    -re -wrap "" {
> +	pass $gdb_test_name
> +    }
> +}
> +if { ! $insn_supported } {
> +    unsupported "illegal instruction"
> +    return
> +}
>  set check_r3 [get_hexadecimal_valueof "\$r3" "default0"]
>  gdb_test "stepi" "" "set r4"
>  set check_r4 [get_hexadecimal_valueof "\$r4" "default0"]


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH][gdb/testsuite] Handle SIGILL in two gdb.arch powerpc test-cases
  2021-10-29 19:45 [PATCH][gdb/testsuite] Handle SIGILL in two gdb.arch powerpc test-cases Tom de Vries
  2021-11-02 15:41 ` will schmidt
@ 2021-11-02 17:06 ` Kevin Buettner
  1 sibling, 0 replies; 3+ messages in thread
From: Kevin Buettner @ 2021-11-02 17:06 UTC (permalink / raw)
  To: Tom de Vries; +Cc: gdb-patches

On Fri, 29 Oct 2021 21:45:18 +0200
Tom de Vries <tdevries@suse.de> wrote:

> On powerpc64le-linux, with test-case gdb.arch/powerpc-addpcis.exp I run into
> SIGILL:
> ...
> (gdb) PASS: gdb.arch/powerpc-addpcis.exp: get hexadecimal valueof "$r3"
> stepi^M
> ^M
> Program terminated with signal SIGILL, Illegal instruction.^M
> The program no longer exists.^M
> (gdb) PASS: gdb.arch/powerpc-addpcis.exp: set r4
> ...
> because it's a power9 insn, and I'm running on a power8 machine.
> 
> Fix this by handling the SIGILL.  Likewise in gdb.arch/powerpc-lnia.exp.
> 
> Tested on powerpc64le-linux.
> 
> Any comments?

LGTM.

Kevin


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-11-02 17:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-29 19:45 [PATCH][gdb/testsuite] Handle SIGILL in two gdb.arch powerpc test-cases Tom de Vries
2021-11-02 15:41 ` will schmidt
2021-11-02 17:06 ` Kevin Buettner

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).