diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-08-18 21:34:28 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-08-18 21:34:28 +0000 |
commit | 1759b3c3d8ee440509ed1e4a2a34eb7ef4c12d95 (patch) | |
tree | 63c1b2b2d6cdebdf336c341e78f207117dd6411a | |
parent | e87a02842a05cf353653b052aba7d86f65dbde35 (diff) | |
download | gdb-1759b3c3d8ee440509ed1e4a2a34eb7ef4c12d95.zip gdb-1759b3c3d8ee440509ed1e4a2a34eb7ef4c12d95.tar.gz gdb-1759b3c3d8ee440509ed1e4a2a34eb7ef4c12d95.tar.bz2 |
* lib/mi-support.exp (mi_gdb_start): Move call to sid_start to
beginning of function. Fix PR gdb/191.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/lib/mi-support.exp | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index ba58af6..bf7e12b 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -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 diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp index 2f48ebe..b3c01ec 100644 --- a/gdb/testsuite/lib/mi-support.exp +++ b/gdb/testsuite/lib/mi-support.exp @@ -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; } |