gdb/testsuite: updates for gdb.arch/{amd64,i386}-disp-step-self-call.exp
authorAndrew Burgess <aburgess@redhat.com>
Fri, 7 Apr 2023 05:19:58 +0000 (06:19 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Fri, 7 Apr 2023 05:24:20 +0000 (06:24 +0100)
This commit:

  commit cf141dd8ccd36efe833aae3ccdb060b517cc1112
  Date:   Wed Feb 22 12:15:34 2023 +0000

      gdb: fix reg corruption from displaced stepping on amd64

Added two test scripts gdb.arch/amd64-disp-step-self-call.exp and
gdb.arch/i386-disp-step-self-call.exp.  These scripts contained a test
that included a stack address in the test name, this makes it harder
to compare results between runs.

This commit gives the tests proper names that doesn't include an
address.

Also in gdb.arch/i386-disp-step-self-call.exp I noticed that we were
writing 8-bytes rather than 4 in order to clear the return address
entry on the stack.  This is also fixed in this commit.

gdb/testsuite/gdb.arch/amd64-disp-step-self-call.exp
gdb/testsuite/gdb.arch/i386-disp-step-self-call.exp

index db44a319a47b4f7b6225dbc89c226d3892b21282..ecac3cdc1cf7d47c206e0dac4775689a8e6ab014 100644 (file)
@@ -60,7 +60,8 @@ gdb_test_multiple "x/2i \$pc" "get address of next insn" {
 
 # Clear the slot on the stack and confirm it was set to zero.
 set sp [expr $sp - 0x8]
-gdb_test_no_output "set {unsigned long long} $sp = 0"
+gdb_test_no_output "set {unsigned long long} $sp = 0" \
+    "clear stack slot"
 set zero_val 0x[format %016x 0]
 gdb_test "x/1gx 0x[format %x $sp]" "$hex:\\s+${zero_val}" \
     "check return address slot was set to zero"
index 7ea036fe3e699e798cc50ccaecae64f0568bc44a..034ef4800b4802654f3fef9a96053f1d7b5dc40c 100644 (file)
@@ -60,7 +60,8 @@ gdb_test_multiple "x/2i \$pc" "get address of next insn" {
 
 # Clear the slot on the stack and confirm it was set to zero.
 set sp [expr $sp - 0x4]
-gdb_test_no_output "set {unsigned long long} $sp = 0"
+gdb_test_no_output "set {unsigned int} $sp = 0" \
+    "clear stack slot"
 set zero_val 0x[format %08x 0]
 gdb_test "x/1wx 0x[format %x $sp]" "$hex:\\s+${zero_val}" \
     "check return address slot was set to zero"