diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-10-29 18:16:46 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-10-29 18:16:46 +0000 |
commit | 79835ff6bec9478f405b4579813b57436b0bf5b7 (patch) | |
tree | 3c1461f8863d1d0295b65f5df491ed65292c64a7 /gdb/testsuite/gdb.base/ending-run.exp | |
parent | d81076a81f1e8bafeffa7af949cadbc36dcc010a (diff) | |
download | gdb-79835ff6bec9478f405b4579813b57436b0bf5b7.tar.gz |
* gdb.base/ending-run.exp: Create identical output when passing
`step to end of run' case. Add regular expression branch satisfying
Stormy16 target.
Diffstat (limited to 'gdb/testsuite/gdb.base/ending-run.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/ending-run.exp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.base/ending-run.exp b/gdb/testsuite/gdb.base/ending-run.exp index c35caf6187c..e569b0e7498 100644 --- a/gdb/testsuite/gdb.base/ending-run.exp +++ b/gdb/testsuite/gdb.base/ending-run.exp @@ -219,15 +219,19 @@ if {![target_info exists use_cygmon] || ![target_info use_cygmon]} { # If we actually have debug info for the start function, # then we won't get the "Single-stepping until function # exit" message. - pass "step to end of run 1" + pass "step to end of run" } -re ".*Single.*Program exited.*$gdb_prompt $" { - pass "step to end of run 1" + pass "step to end of run" } -re ".*Single.*in exit.*from.*dld.sl.*$gdb_prompt $" { - pass "step to end of run 2" + pass "step to end of run" gdb_test "c" ".*" "continue after exit" } + -re ".*Single.*_int_reset.*$gdb_prompt $" { + pass "step to end of run" + setup_xfail "stormy16-*-*" + } -re ".*$gdb_prompt $" { fail "step to end of run" } |