diff options
author | Tom Tromey <tromey@redhat.com> | 2013-01-22 15:47:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-01-22 15:47:54 +0000 |
commit | ea3aedcb6bbf6114d19bb4136b52d3f8b0b3090f (patch) | |
tree | 62b2fc3b7283d1518e80c273b1a060ade4e8ee0d /gdb | |
parent | 8f1d5693d3d521de4b0a65f1a71991a3d27dfac8 (diff) | |
download | gdb-ea3aedcb6bbf6114d19bb4136b52d3f8b0b3090f.zip gdb-ea3aedcb6bbf6114d19bb4136b52d3f8b0b3090f.tar.gz gdb-ea3aedcb6bbf6114d19bb4136b52d3f8b0b3090f.tar.bz2 |
* gdb.gdb/selftest.exp (do_steps_and_nexts): Handle bfd_init
call.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.gdb/selftest.exp | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index de5d075..1010c99 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2013-01-22 Tom Tromey <tromey@redhat.com> + + * gdb.gdb/selftest.exp (do_steps_and_nexts): Handle bfd_init + call. + 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com> * gdb.mi/mi-break.exp: Expect new 'thread-groups' field. diff --git a/gdb/testsuite/gdb.gdb/selftest.exp b/gdb/testsuite/gdb.gdb/selftest.exp index 351fa87..55e13cf 100644 --- a/gdb/testsuite/gdb.gdb/selftest.exp +++ b/gdb/testsuite/gdb.gdb/selftest.exp @@ -150,6 +150,10 @@ proc do_steps_and_nexts {} { set description "next over textdomain PACKAGE" set command "next" } + -re ".*bfd_init ..;.*$gdb_prompt $" { + set description "next over bfd_init" + set command "next" + } -re ".*VEC_cleanup .cmdarg_s.*$gdb_prompt $" { set description "next over cmdarg_s VEC_cleanup" set command "next" |