diff options
author | Anton Blanchard <anton@samba.org> | 2014-03-31 13:32:07 +1100 |
---|---|---|
committer | Anton Blanchard <anton@samba.org> | 2014-04-01 12:12:59 +1100 |
commit | 98d1b8dcd84bb39ba5d0731162f241890d4ce5f5 (patch) | |
tree | d45112a243b18595ba48e64e1b3bab6d22f53e6b /gdb | |
parent | 3114cea14b326c1d429388559f020103108b3019 (diff) | |
download | gdb-98d1b8dcd84bb39ba5d0731162f241890d4ce5f5.zip gdb-98d1b8dcd84bb39ba5d0731162f241890d4ce5f5.tar.gz gdb-98d1b8dcd84bb39ba5d0731162f241890d4ce5f5.tar.bz2 |
gdb.arch/ppc64-atomic-inst.exp: Improve error handling.
gdb/testsuite/
2014-04-01 Anton Blanchard <anton@samba.org>
* gdb.arch/ppc64-atomic-inst.exp: Use untested. Make test
messages unique.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp | 14 |
2 files changed, 12 insertions, 7 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 80b31d8..51f2a70 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2014-04-01 Anton Blanchard <anton@samba.org> + * gdb.arch/ppc64-atomic-inst.exp: Use untested. Make test + messages unique. + +2014-04-01 Anton Blanchard <anton@samba.org> + * gdb.arch/ppc64-atomic-inst.exp: Use standard_testfile, prepare_for_testing. diff --git a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp index fc7568c..ff26697 100644 --- a/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp +++ b/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp @@ -33,26 +33,26 @@ if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug quiet}] } if ![runto_main] then { - perror "Couldn't run to breakpoint" - continue + untested "could not run to main" + return -1 } set bp1 [gdb_get_line_number "lwarx"] gdb_breakpoint "$bp1" "Breakpoint $decimal at $hex" \ - "Set the breakpoint at the start of the sequence" + "Set the breakpoint at the start of the lwarx/stwcx sequence" set bp2 [gdb_get_line_number "ldarx"] gdb_breakpoint "$bp2" "Breakpoint $decimal at $hex" \ - "Set the breakpoint at the start of the sequence" + "Set the breakpoint at the start of the ldarx/stdcx sequence" gdb_test continue "Continuing.*Breakpoint $decimal.*" \ - "Continue until breakpoint" + "Continue until lwarx/stwcx start breakpoint" gdb_test nexti "bne.*1b" \ "Step through the lwarx/stwcx sequence" gdb_test continue "Continuing.*Breakpoint $decimal.*" \ - "Continue until breakpoint" + "Continue until ldarx/stdcx start breakpoint" gdb_test nexti "bne.*1b" \ - "Step through the lwarx/stwcx sequence" + "Step through the ldarx/stdcx sequence" |