diff options
author | Pedro Alves <palves@redhat.com> | 2015-07-29 16:24:53 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-07-29 16:24:53 +0100 |
commit | 1eef6428112a1c1fe0295f36f92d7a3cf9908228 (patch) | |
tree | f1754fa39db17c72891e26cd69dc9a6261a73e29 /gdb | |
parent | 7da5b897c96faa3c520662d2b0bd4837567bfb1d (diff) | |
download | gdb-1eef6428112a1c1fe0295f36f92d7a3cf9908228.zip gdb-1eef6428112a1c1fe0295f36f92d7a3cf9908228.tar.gz gdb-1eef6428112a1c1fe0295f36f92d7a3cf9908228.tar.bz2 |
Make gdb.base/multi-forks.exp work with the native-extended-gdbserver board
Now that we can expect inferior output with the gdbserver boards, this
is all it takes to have the test pass against extended-remote
gdbserver.
Don Breazeal originally wrong something like this:
https://sourceware.org/ml/gdb-patches/2015-03/msg00506.html
which was what originally inspired the introduction of
$inferior_spawn_id.
gdb/testsuite/ChangeLog:
2015-07-29 Pedro Alves <palves@redhat.com>
Don Breazeal <donb@codesourcery.com>
* gdb.base/multi-forks.exp (continue_to_exit_bp_loc): Expect
output from both inferior_spawn_id and gdb_spawn_id.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/multi-forks.exp | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 28c7044..44725b4 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2015-07-29 Pedro Alves <palves@redhat.com> + Don Breazeal <donb@codesourcery.com> + + * gdb.base/multi-forks.exp (continue_to_exit_bp_loc): Expect + output from both inferior_spawn_id and gdb_spawn_id. + 2015-07-29 Sergio Durigan Junior <sergiodj@redhat.com> * gdb.threads/attach-into-signal.exp (corefunc): Use diff --git a/gdb/testsuite/gdb.base/multi-forks.exp b/gdb/testsuite/gdb.base/multi-forks.exp index e95cb4b..0582ba4 100644 --- a/gdb/testsuite/gdb.base/multi-forks.exp +++ b/gdb/testsuite/gdb.base/multi-forks.exp @@ -50,6 +50,7 @@ set exit_bp_loc [gdb_get_line_number "Set exit breakpoint here."] proc continue_to_exit_bp_loc {} { global exit_bp_loc decimal gdb_prompt + global inferior_spawn_id gdb_spawn_id gdb_breakpoint $exit_bp_loc @@ -70,6 +71,7 @@ proc continue_to_exit_bp_loc {} { # first in the script that occurs anywhere in the input, so that # we don't skip anything. gdb_expect { + -i "$inferior_spawn_id $gdb_spawn_id" -re "($decimal done)|(Breakpoint)|($gdb_prompt)" { if {[info exists expect_out(1,string)]} { incr seen_done |