diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 3a1bdfd082..e7d935e060 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-07-20 Jan Kratochvil + + * gdb.gdb/selftest.exp (do_steps_and_nexts): Add "next over TRY" and + "step into captured_main (args)". + 2016-07-20 Jan Kratochvil * gdb.btrace/tailcall-only.exp: Use is_lp64_target check. diff --git a/gdb/testsuite/gdb.gdb/selftest.exp b/gdb/testsuite/gdb.gdb/selftest.exp index 809045ae0d..2fdd9e3539 100644 --- a/gdb/testsuite/gdb.gdb/selftest.exp +++ b/gdb/testsuite/gdb.gdb/selftest.exp @@ -111,6 +111,14 @@ proc do_steps_and_nexts {} { set description "next over lim_at_start initialization" set command "next" } + -re ".*TRY.*$gdb_prompt $" { + set description "next over TRY" + set command "next" + } + -re ".*captured_main \\(args\\);.*$gdb_prompt $" { + set description "step into captured_main (args)" + set command "step" + } -re ".*count . 0x3.*$gdb_prompt $" { set description "next over conditional stack alignment code 1" set command "next"