From: Sandra Loosemore Date: Wed, 21 Oct 2015 16:54:49 +0000 (-0700) Subject: Adjust timeout in gdb.base/freebpcmd.exp. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27145d50705b46e213f5f261bd07572383c79e20;p=binutils-gdb.git Adjust timeout in gdb.base/freebpcmd.exp. 2015-10-21 Sandra Loosemore gdb/testsuite/ * gdb.base/freebpcmd.exp: Use with_timeout_factor instead of hardwired timeout value. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index bf63b5d126d..82d53f869f0 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-10-21 Sandra Loosemore + + * gdb.base/freebpcmd.exp: Use with_timeout_factor instead + of hardwired timeout value. + 2015-10-20 Jan Kratochvil Pedro Alves diff --git a/gdb/testsuite/gdb.base/freebpcmd.exp b/gdb/testsuite/gdb.base/freebpcmd.exp index 2f46bc8abc8..c7c0814c8df 100644 --- a/gdb/testsuite/gdb.base/freebpcmd.exp +++ b/gdb/testsuite/gdb.base/freebpcmd.exp @@ -103,22 +103,19 @@ if {$i >= [llength $lines]} { gdb_run_cmd -set prev_timeout $timeout -set timeout 120 - -gdb_test_multiple "" "run program with breakpoint commands" { - -re "warning: Invalid control type in command structure" { - kfail "gdb/1489" "run program with breakpoint commands" - } - -re "Invalid i value\r\n$gdb_prompt $" { - xfail "run program with breakpoint commands (i value not readable)" - } - -re "$gdb_prompt $" { - pass "run program with breakpoint commands" - } - eof { - kfail "gdb/1489" "run program with breakpoint commands (GDB died)" +with_timeout_factor 10 { + gdb_test_multiple "" "run program with breakpoint commands" { + -re "warning: Invalid control type in command structure" { + kfail "gdb/1489" "run program with breakpoint commands" + } + -re "Invalid i value\r\n$gdb_prompt $" { + xfail "run program with breakpoint commands (i value not readable)" + } + -re "$gdb_prompt $" { + pass "run program with breakpoint commands" + } + eof { + kfail "gdb/1489" "run program with breakpoint commands (GDB died)" + } } } - -set timeout $prev_timeout