* lib/mi-support.exp (mi_gdb_start): Move call to sid_start to
authorAndrew Cagney <cagney@redhat.com>
Sat, 18 Aug 2001 21:34:28 +0000 (21:34 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sat, 18 Aug 2001 21:34:28 +0000 (21:34 +0000)
beginning of function.  Fix PR gdb/191.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/mi-support.exp

index ba58af6..bf7e12b 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-18  Andrew Cagney  <ac131313@redhat.com>
+
+       * lib/mi-support.exp (mi_gdb_start): Move call to sid_start to
+       beginning of function.  Fix PR gdb/191.
+
 2001-08-16  Frank Ch. Eigler  <fche@redhat.com>
 
        * config/sid.exp (sid_start): Don't warn if we cannot figure out
index 2f48ebe..b3c01ec 100644 (file)
@@ -99,6 +99,12 @@ proc mi_gdb_start { } {
 
     gdb_stop_suppressing_tests;
 
+    # Start SID.
+    if { [info procs sid_start] != "" } {
+       verbose "Spawning SID"
+       sid_start
+    }
+
     verbose "Spawning $GDB -nw $GDBFLAGS $MIFLAGS"
 
     if [info exists gdb_spawn_id] {
@@ -170,12 +176,6 @@ proc mi_gdb_start { } {
        }
     }
 
-    # Finally start SID.
-    if { [info procs sid_start] != "" } {
-       verbose "Spawning SID"
-       sid_start
-    }
-
     return 0;
 }