* gdb.base/nodebug.exp: Add xfails for ultrix and irix5 (same

places as other ecoff systems).
This commit is contained in:
Jim Kingdon 1995-02-01 18:21:30 +00:00
parent 372bb8b4f0
commit ff884d6e71

View File

@ -80,6 +80,15 @@ proc test_with_self {} {
} }
} }
# We'll need this when we send a ^C to GDB. Need to do it before we
# run the program and gdb starts saving and restoring tty states.
# On Ultrix, we don't need it and it is really slow (because shell_escape
# doesn't use vfork).
if ![istarget "*-*-ultrix*"] then {
gdb_test "shell stty intr '^C'" "" \
"set interrupt character in test_with_self"
}
# run yourself # run yourself
set description "run until breakpoint at main" set description "run until breakpoint at main"
send "run\n" send "run\n"
@ -385,14 +394,6 @@ proc test_with_self {} {
} }
} }
# We'll need this when we send a ^C to GDB.
# On Ultrix, we don't need it and it is really slow (because shell_escape
# doesn't use vfork).
if ![istarget "*-*-ultrix*"] then {
gdb_test "shell stty intr '^C'" "" \
"set interrupt character in test_with_self"
}
# start the "xgdb" process # start the "xgdb" process
send "continue\n" send "continue\n"
expect { expect {