Message ID | 1480698816-10237-1-git-send-email-lgustavo@codesourcery.com |
---|---|
State | New |
Headers | show |
On 12/02/2016 05:13 PM, Luis Machado wrote: > This reverts the timeout handling (removed by > 018572b88885ae67d22612937fa1e4fd98d5f5ad) for gdb.cp/ovldbreak.exp until we > decide what to do about this particular function. > > I take it it is obvious? > > gdb/testsuite/ChangeLog: > > 2016-12-02 Luis Machado <lgustavo@codesourcery.com> > > * gdb.base/ovldbreak.exp (take_gdb_out_of_choice_menu): Restore > timeout handling. OK. Thanks, Pedro Alves
On 12/02/2016 11:32 AM, Pedro Alves wrote: > On 12/02/2016 05:13 PM, Luis Machado wrote: >> This reverts the timeout handling (removed by >> 018572b88885ae67d22612937fa1e4fd98d5f5ad) for gdb.cp/ovldbreak.exp until we >> decide what to do about this particular function. >> >> I take it it is obvious? >> >> gdb/testsuite/ChangeLog: >> >> 2016-12-02 Luis Machado <lgustavo@codesourcery.com> >> >> * gdb.base/ovldbreak.exp (take_gdb_out_of_choice_menu): Restore >> timeout handling. > > OK. > > Thanks, > Pedro Alves > Thanks, pushed as 008459ea88ad4fdcb7da37dad7f68888ef6ecc47.
diff --git a/gdb/testsuite/gdb.cp/ovldbreak.exp b/gdb/testsuite/gdb.cp/ovldbreak.exp index b6c5efd..2c1ff6c 100644 --- a/gdb/testsuite/gdb.cp/ovldbreak.exp +++ b/gdb/testsuite/gdb.cp/ovldbreak.exp @@ -58,6 +58,10 @@ proc take_gdb_out_of_choice_menu {} { gdb_test_multiple " " " " { -re ".*$gdb_prompt $" { } + timeout { + perror "could not resynchronize to command prompt (timeout)" + continue + } } }