* gdb.base/a1-selftest.exp (test_with_self): Don't invoke stty on

ultrix.
This commit is contained in:
Jim Kingdon 1995-02-01 16:11:07 +00:00
parent 9ea5de84ab
commit 3c1c71bf59
2 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Wed Feb 1 08:03:48 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
* gdb.base/a1-selftest.exp (test_with_self): Don't invoke stty on
ultrix.
Mon Jan 30 11:44:52 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
* gdb.base/nodebug.c (inner): Use variables so AIX linker doesn't

View file

@ -385,9 +385,13 @@ proc test_with_self {} {
}
}
# We'll need this when we send a ^C to GDB
gdb_test "shell stty intr '^C'" "" \
"set interrupt character in 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
send "continue\n"