diff options
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/assign.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index b31e487..8ada3d4 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2006-03-07 Paul Brook <paul@codesourcery.com> + * gdb.base/assign.exp: Correct fail message. + +2006-03-07 Paul Brook <paul@codesourcery.com> + * lib/compiler.c: Extract armcc version number. * lib/compiler.cc: Ditto. diff --git a/gdb/testsuite/gdb.base/assign.exp b/gdb/testsuite/gdb.base/assign.exp index 58e741e..77f06de 100644 --- a/gdb/testsuite/gdb.base/assign.exp +++ b/gdb/testsuite/gdb.base/assign.exp @@ -439,7 +439,7 @@ gdb_expect { timeout { fail "(timeout) v_int+=v_double" } } } - -re ".*$gdb_prompt $" { fail "v_int+=v_signed_long" } + -re ".*$gdb_prompt $" { fail "v_int+=v_double" } timeout { fail "(timeout) v_int+=v_double" } } |