From: Nicholas Duffek Date: Fri, 17 Nov 2000 17:16:24 +0000 (+0000) Subject: * lib/gdb.exp (gdb_test): Override timeout with board info. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9d2e1bab9d9c7aad8ccfc4a89e930a37cfaf8318;p=binutils-gdb.git * lib/gdb.exp (gdb_test): Override timeout with board info. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 6be7ded5338..ead5e80c16a 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2000-11-17 Nick Duffek + + * lib/gdb.exp (gdb_test): Override timeout with board info. + 2000-11-17 Nick Duffek * gdb.base/display.exp: Don't kill running stub. Add "again" to diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index c7990d1c7f5..12c631a1a64 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -457,14 +457,18 @@ proc gdb_test { args } { } } - if [info exists timeout] { - set tmt $timeout; + if [target_info exists gdb,timeout] { + set tmt [target_info gdb,timeout]; } else { - global timeout; if [info exists timeout] { set tmt $timeout; } else { - set tmt 60; + global timeout; + if [info exists timeout] { + set tmt $timeout; + } else { + set tmt 60; + } } } gdb_expect $tmt {