mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
* gdb.base/sigall.exp: Add workaround for alpha weirdness.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
Thu Jan 12 01:14:53 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
|
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".
|
* gdb.base/help.exp: Don't test "help show".
|
||||||
|
|
||||||
Wed Jan 11 14:37:04 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
|
Wed Jan 11 14:37:04 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
|
||||||
|
@ -65,7 +65,12 @@ proc test_one_sig {nextsig} {
|
|||||||
} else {
|
} else {
|
||||||
set pattern "Breakpoint.*handle_$thissig"
|
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"
|
send "continue\n"
|
||||||
expect {
|
expect {
|
||||||
-re "Breakpoint.*gen_$nextsig.*kill.*$prompt $" {
|
-re "Breakpoint.*gen_$nextsig.*kill.*$prompt $" {
|
||||||
|
Reference in New Issue
Block a user