aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2001-10-29 18:16:46 +0000
committerCorinna Vinschen <corinna@vinschen.de>2001-10-29 18:16:46 +0000
commit36a222619ef7b34bae54ad4c186db5786c1dcbdf (patch)
tree69c1cf11c278452fdf8e607db412eb56131e43cb
parent92b8ae9161de8083d3fb7ce654ddf98bfaf07c90 (diff)
downloadfsf-binutils-gdb-36a222619ef7b34bae54ad4c186db5786c1dcbdf.zip
fsf-binutils-gdb-36a222619ef7b34bae54ad4c186db5786c1dcbdf.tar.gz
fsf-binutils-gdb-36a222619ef7b34bae54ad4c186db5786c1dcbdf.tar.bz2
* gdb.base/ending-run.exp: Create identical output when passing
`step to end of run' case. Add regular expression branch satisfying Stormy16 target.
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.base/ending-run.exp10
2 files changed, 13 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 66a301a..b6f392d 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-29 Corinna Vinschen <vinschen@redhat.com>
+
+ * gdb.base/ending-run.exp: Create identical output when passing
+ `step to end of run' case. Add regular expression branch satisfying
+ Stormy16 target.
+
2001-10-28 Mark Kettenis <kettenis@gnu.org>
* gdb.base/interrupt.exp: Treat SIGILL similar to SIGSEGV such
diff --git a/gdb/testsuite/gdb.base/ending-run.exp b/gdb/testsuite/gdb.base/ending-run.exp
index c35caf6..e569b0e 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"
}