diff options
author | Daniel Jacobowitz <drow@false.org> | 2009-11-02 17:28:16 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2009-11-02 17:28:16 +0000 |
commit | db16b7720386efdc1639ac6455f13bde6fc7a635 (patch) | |
tree | fb4fcd25c64248259f36aeb1fc914de9b8e7cc8c /gdb | |
parent | ad09a548819bfa35c8fbf7f69ba1c5d154b82801 (diff) | |
download | gdb-db16b7720386efdc1639ac6455f13bde6fc7a635.zip gdb-db16b7720386efdc1639ac6455f13bde6fc7a635.tar.gz gdb-db16b7720386efdc1639ac6455f13bde6fc7a635.tar.bz2 |
* lib/gdb.exp (gdb_expect): Fix timeout typo.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 190be51..c3f3992 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2009-11-02 Daniel Jacobowitz <dan@codesourcery.com> + * lib/gdb.exp (gdb_expect): Fix timeout typo. + +2009-11-02 Daniel Jacobowitz <dan@codesourcery.com> + * gdb.base/opaque.exp: Remove duplicate tests and xyz from test name. 2009-11-02 Daniel Jacobowitz <dan@codesourcery.com> diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 3ac7305..590a284 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -2027,7 +2027,7 @@ proc gdb_expect { args } { if [info exists atimeout] { if { ![info exists gtimeout] || $gtimeout < $atimeout } { - set $gtimeout $atimeout; + set gtimeout $atimeout; } } else { if ![info exists gtimeout] { |