diff options
Diffstat (limited to 'gdb/testsuite/config')
-rw-r--r-- | gdb/testsuite/config/monitor.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/config/vx.exp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/config/monitor.exp b/gdb/testsuite/config/monitor.exp index a40911d..361926b 100644 --- a/gdb/testsuite/config/monitor.exp +++ b/gdb/testsuite/config/monitor.exp @@ -159,7 +159,7 @@ proc gdb_load { arg } { set last_gdb_file $arg; - for { set j 1; } { $j <= 2 } {incr j; } { + for { set j 1 } { $j <= 2 } {incr j } { if [target_info exists gdb,use_standard_load] { gdb_target_exec; if ![target_info exists gdb,no_push_conn] { diff --git a/gdb/testsuite/config/vx.exp b/gdb/testsuite/config/vx.exp index 335287f..29c3b1b 100644 --- a/gdb/testsuite/config/vx.exp +++ b/gdb/testsuite/config/vx.exp @@ -59,7 +59,7 @@ proc gdb_start { } { global reboot # get a connection to the board - for { set x 0; } { $x < 3 } { incr x } { + for { set x 0 } { $x < 3 } { incr x } { set shell_id [remote_open target] if { $shell_id > 0 } { verbose "Spawn id for remote shell is $shell_id" |