diff options
author | Fred Fish <fnf@specifix.com> | 1996-08-12 22:38:30 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-08-12 22:38:30 +0000 |
commit | d9538961ccee460bce76d0e940a305c15eb171bf (patch) | |
tree | 5ffee54c19cdae0d9f8de39c4594cd9f8cfbfb85 /gdb/testsuite/gdb.base/signals.exp | |
parent | ed36b6cd33d1ca80753808fdb9a93e5af3cb9a25 (diff) | |
download | gdb-d9538961ccee460bce76d0e940a305c15eb171bf.zip gdb-d9538961ccee460bce76d0e940a305c15eb171bf.tar.gz gdb-d9538961ccee460bce76d0e940a305c15eb171bf.tar.bz2 |
* gdb.base/a1-selftest.exp (do_steps_and_nexts): New routine to
encapsulate all the steps/nexts done during self test, starting
at main, and makes them less sensitive to optimization issues.
Add "hppa*-*-hpux*" to setup_xfail for "backtrace through
signal handler" test.
* gdb.threads/pthreads.exp: Only run this for native configs.
* gdb.base/signals.exp (test_handle_all_print): Remove code that
increased timeouts, it now makes no difference.
* gdb.base/structs.exp (do_function_calls): Add hppa*-*-hpux9*"
setup_xfails for "p fun5()", "p fun6()", "p fun7()", and "p fun8"
tests.
gdb.c++/virtfunc.exp (do_tests): Add "mips-*-irix5*" setup_xfail
for "runto test_calls(void)" test.
Diffstat (limited to 'gdb/testsuite/gdb.base/signals.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/signals.exp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gdb/testsuite/gdb.base/signals.exp b/gdb/testsuite/gdb.base/signals.exp index 0df1478..48ee6ed 100644 --- a/gdb/testsuite/gdb.base/signals.exp +++ b/gdb/testsuite/gdb.base/signals.exp @@ -300,16 +300,11 @@ gdb_start # This will need to be updated as the exact list of signals changes, # but I want to test that TARGET_SIGNAL_0, TARGET_SIGNAL_DEFAULT, and # TARGET_SIGNAL_UNKNOWN are skipped. -# Increase timeout and expect input buffer for large output from gdb. +# Increase expect input buffer for large output from gdb. # Allow blank or TAB as whitespace characters and test individually for # each specific signal. proc test_handle_all_print {} { - global timeout - - set oldtimeout $timeout - set timeout [expr "$timeout + 15"] - verbose "Timeout is now $timeout seconds" 2 match_max 10000 gdb_test "handle all print" \ "Signal\[ \t\]+Stop\[ \t\]+Print\[ \t\]+Pass to program\[ \t\]+Description\r\n.*" \ @@ -551,8 +546,6 @@ proc test_handle_all_print {} { gdb_test "handle all print" \ ".*EXC_BREAKPOINT\[ \t\]+Yes\[ \t\]+Yes\[ \t\]+Yes\[ \t\]+Breakpoint.*" \ "handle all print - Breakpoint" - set timeout $oldtimeout - verbose "Timeout restored to $timeout seconds" 2 } test_handle_all_print |