diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-07-02 12:06:56 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-07-02 12:06:56 +0000 |
commit | a16242411fae409bd8b9133ee711e2177d0bcde2 (patch) | |
tree | 5d5aaf52cbfa00826830ff3fc2ec5b538517f3a5 /gdb/testsuite/lib | |
parent | 2d7b58e8d63907b0dd76f7447f514ef66035a62f (diff) | |
download | gdb-a16242411fae409bd8b9133ee711e2177d0bcde2.zip gdb-a16242411fae409bd8b9133ee711e2177d0bcde2.tar.gz gdb-a16242411fae409bd8b9133ee711e2177d0bcde2.tar.bz2 |
gdb/testsuite/
* gdb.base/stale-infcall.c (infcall): New label test-next.
(main): New labels test-pass and test-fail.
* gdb.base/stale-infcall.exp: Continue to test-next. Put breakpoint
$test_fail_bpnum to test-fail.
(test system longjmp tracking support): New test.
Delete $test_fail_bpnum.
* lib/gdb.exp (gdb_continue_to_breakpoint): Accept also Temporary
breakpoint.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 7cb619a..289d4d8 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -469,7 +469,7 @@ proc gdb_continue_to_breakpoint {name {location_pattern .*}} { send_gdb "continue\n" gdb_expect { - -re "Breakpoint .* (at|in) $location_pattern\r\n$gdb_prompt $" { + -re "(?:Breakpoint|Temporary breakpoint) .* (at|in) $location_pattern\r\n$gdb_prompt $" { pass $full_name } -re ".*$gdb_prompt $" { |