* gdb.base/sigall.exp: Add workaround for alpha weirdness.

This commit is contained in:
Jim Kingdon 1995-01-12 16:41:09 +00:00
parent cc37d01df3
commit 3074a46dbf
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Thu Jan 12 01:14:53 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
* gdb.base/sigall.exp: Add workaround for alpha weirdness.
* gdb.base/help.exp: Don't test "help show".
Wed Jan 11 14:37:04 1995 Jim Kingdon <kingdon@lioth.cygnus.com>

View File

@ -65,7 +65,12 @@ proc test_one_sig {nextsig} {
} else {
set pattern "Breakpoint.*handle_$thissig"
}
gdb_test "continue" $pattern "send signal $thissig"
# On the alpha we don't end up in handle_ABRT. I don't know why.
if {"$thissig" != "ABRT" || ![istarget "*-*-osf*"]} then {
gdb_test "continue" $pattern "send signal $thissig"
}
send "continue\n"
expect {
-re "Breakpoint.*gen_$nextsig.*kill.*$prompt $" {