diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-02-20 06:20:28 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-02-20 06:20:28 +0000 |
commit | c755f03d06e8d398f97fa2fbdfe39b13a05cc924 (patch) | |
tree | a7ceee200d1288dbc1041071431e8ab6ed2fbaa5 /gdb/testsuite | |
parent | 6c7130122d2029f0ab372d3dbb3996769b892fdd (diff) | |
download | gdb-c755f03d06e8d398f97fa2fbdfe39b13a05cc924.zip gdb-c755f03d06e8d398f97fa2fbdfe39b13a05cc924.tar.gz gdb-c755f03d06e8d398f97fa2fbdfe39b13a05cc924.tar.bz2 |
gdb/testsuite/
Fix racy FAILs.
* gdb.base/catch-load.exp (one_catch_load_test): Remove duplicate
"continue" command.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/catch-load.exp | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 5c03dd8..5b31bd8 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com> + + Fix racy FAILs. + * gdb.base/catch-load.exp (one_catch_load_test): Remove duplicate + "continue" command. + 2012-02-19 Jan Kratochvil <jan.kratochvil@redhat.com> Fix for gdbserver non-extended mode. diff --git a/gdb/testsuite/gdb.base/catch-load.exp b/gdb/testsuite/gdb.base/catch-load.exp index af7114a..2b3112f 100644 --- a/gdb/testsuite/gdb.base/catch-load.exp +++ b/gdb/testsuite/gdb.base/catch-load.exp @@ -68,7 +68,6 @@ proc one_catch_load_test {scenario kind match sostop} { gdb_test_no_output "set stop-on-solib-events $sostop" gdb_test "catch $kind" "Catchpoint $decimal \\(.*\\)" - send_gdb "continue\n" gdb_test_multiple "continue" "continue" { -re "Catchpoint $decimal\r\n.*loaded .*/$testfile2.*\r\n.*$gdb_prompt $" { if {$match} { |