diff options
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.trace/tfind.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 6d78448..088b0f8 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2010-04-02 Pedro Alves <pedro@codesourcery.com> + + * gdb.trace/tfind.exp: Adjust expected disassembly output. + 2010-04-01 Stan Shebs <stan@codesourcery.com> * gdb.trace/actions.exp: Tweak expected output. diff --git a/gdb/testsuite/gdb.trace/tfind.exp b/gdb/testsuite/gdb.trace/tfind.exp index 9928c69..fcbbd1d 100644 --- a/gdb/testsuite/gdb.trace/tfind.exp +++ b/gdb/testsuite/gdb.trace/tfind.exp @@ -334,7 +334,7 @@ set timeout 60 send_gdb "disassemble gdb_c_test\n" # look for disassembly of function label gdb_expect { - -re "<gdb_c_test(\.\[0-9\]+|)>:.*End of assembler dump.*$gdb_prompt $" { pass "8.36: trace disassembly" } + -re "<(\.\[0-9\]+|)>:.*End of assembler dump.*$gdb_prompt $" { pass "8.36: trace disassembly" } -re ".*$gdb_prompt $" { fail "8.36: trace disassembly" } timeout { fail "8.36: trace disassembly (timeout)" } } |