diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1995-02-01 16:11:07 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1995-02-01 16:11:07 +0000 |
commit | 3c1c71bf59936ddb58a93393a375d0f4bb7514c3 (patch) | |
tree | afd59f3adad76f25ab72b7005d81e1b3962916d3 /gdb/testsuite | |
parent | 9ea5de84ab25731d33cc01c4e9610a40055903ba (diff) | |
download | gdb-3c1c71bf59936ddb58a93393a375d0f4bb7514c3.zip gdb-3c1c71bf59936ddb58a93393a375d0f4bb7514c3.tar.gz gdb-3c1c71bf59936ddb58a93393a375d0f4bb7514c3.tar.bz2 |
* gdb.base/a1-selftest.exp (test_with_self): Don't invoke stty on
ultrix.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/a1-selftest.exp | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index b386605..b8a5efa 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -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 diff --git a/gdb/testsuite/gdb.base/a1-selftest.exp b/gdb/testsuite/gdb.base/a1-selftest.exp index d22afb9..dbe4ec9 100644 --- a/gdb/testsuite/gdb.base/a1-selftest.exp +++ b/gdb/testsuite/gdb.base/a1-selftest.exp @@ -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" |