From: Brendan Kehoe Date: Sat, 3 Aug 1996 00:38:50 +0000 (+0000) Subject: * config/vx-gdb.exp (gdb_start): Fix syntax of `$shell_id < 0'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e95a45af92461df2842d017f2940359cde2d5eea;p=binutils-gdb.git * config/vx-gdb.exp (gdb_start): Fix syntax of `$shell_id < 0'. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index c113f04b6f4..55f0ce403e2 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +Fri Aug 2 17:37:26 1996 Brendan Kehoe + + * config/vx-gdb.exp (gdb_start): Fix syntax of `$shell_id < 0'. + Thu Jun 27 20:41:40 1996 Fred Fish * gdb.base/signals.exp (test_handle_all_print): Temporarily increase diff --git a/gdb/testsuite/config/vx-gdb.exp b/gdb/testsuite/config/vx-gdb.exp index 984f4beabbb..6a6ea6bfd15 100644 --- a/gdb/testsuite/config/vx-gdb.exp +++ b/gdb/testsuite/config/vx-gdb.exp @@ -70,7 +70,7 @@ proc gdb_start { } { # get a connection to the board set shell_id [ eval $connectmode "$targetname" ] - if $shell_id<0 then { + if { $shell_id < 0 } then { perror "Couldn't connect to $targetname." return -1 }