diff options
Diffstat (limited to 'gdb/testsuite/gdb.base/condbreak.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/condbreak.exp | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/gdb/testsuite/gdb.base/condbreak.exp b/gdb/testsuite/gdb.base/condbreak.exp index ea4e0ba..37f7aa7 100644 --- a/gdb/testsuite/gdb.base/condbreak.exp +++ b/gdb/testsuite/gdb.base/condbreak.exp @@ -205,39 +205,25 @@ gdb_test "continue" "Continuing\\..*Breakpoint \[0-9\]+, main \\(argc=.*, argv=. # take precedence over real code. # # Until the Dwarf2 writer gets fixed, I'm going to XFAIL its behavior. -send_gdb "continue\n" -gdb_expect { +gdb_test_multiple "continue" "run until breakpoint at marker1" { -re "Continuing\\..*Breakpoint \[0-9\]+, marker1 \\(\\) at .*$srcfile1:($bp_location15|$bp_location16).*($bp_location15|$bp_location16)\[\t \]+.*$gdb_prompt $" { pass "run until breakpoint at marker1" } -re "Continuing\\..*Breakpoint \[0-9\]+, $hex in marker1 \\(\\) at .*$srcfile1:($bp_location15|$bp_location16).*($bp_location15|$bp_location16)\[\t \]+.*$gdb_prompt $" { xfail "run until breakpoint at marker1" } - -re "$gdb_prompt $" { - fail "run until breakpoint at marker1" - } - timeout { - fail "(timeout) run until breakpoint at marker1" - } } # run until the breakpoint at marker2 # Same issues here as above. setup_xfail hppa2.0w-*-* 11512CLLbs -send_gdb "continue\n" -gdb_expect { +gdb_test_multiple "continue" "run until breakpoint at marker2" { -re "Continuing\\..*Breakpoint \[0-9\]+, marker2 \\(a=43\\) at .*$srcfile1:($bp_location8|$bp_location9).*($bp_location8|$bp_location9)\[\t \]+.*$gdb_prompt $" { pass "run until breakpoint at marker2" } -re "Continuing\\..*Breakpoint \[0-9\]+, $hex in marker2 \\(a=43\\) at .*$srcfile1:($bp_location8|$bp_location9).*($bp_location8|$bp_location9)\[\t \]+.*$gdb_prompt $" { xfail "run until breakpoint at marker2" } - -re "$gdb_prompt $" { - fail "run until breakpoint at marker2" - } - timeout { - fail "(timeout) run until breakpoint at marker2" - } } # Test combinations of conditional and thread-specific breakpoints. |