aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/config
diff options
context:
space:
mode:
authorBrendan Kehoe <brendan@cygnus>1996-08-03 00:38:50 +0000
committerBrendan Kehoe <brendan@cygnus>1996-08-03 00:38:50 +0000
commite95a45af92461df2842d017f2940359cde2d5eea (patch)
treeffa2748819411293182047cc4ad61f73840b33c7 /gdb/testsuite/config
parent5735ac9e57fe37d7984e6f71d551f9b0ebd87721 (diff)
downloadgdb-e95a45af92461df2842d017f2940359cde2d5eea.zip
gdb-e95a45af92461df2842d017f2940359cde2d5eea.tar.gz
gdb-e95a45af92461df2842d017f2940359cde2d5eea.tar.bz2
* config/vx-gdb.exp (gdb_start): Fix syntax of `$shell_id < 0'.
Diffstat (limited to 'gdb/testsuite/config')
-rw-r--r--gdb/testsuite/config/vx-gdb.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/config/vx-gdb.exp b/gdb/testsuite/config/vx-gdb.exp
index 984f4be..6a6ea6b 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
}