diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.c++/namespace.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index f230de9..3ac5b4c 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-01-10 Michael Snyder <msnyder@redhat.com> + + * gdb.c++/namespace.exp: Accept both '\0' and '\000'. + 2002-01-10 Jason Merrill <jason@redhat.com> * gdb.c++/namespace.exp: '\0', not '\000'. diff --git a/gdb/testsuite/gdb.c++/namespace.exp b/gdb/testsuite/gdb.c++/namespace.exp index a437cd4..b06133e 100644 --- a/gdb/testsuite/gdb.c++/namespace.exp +++ b/gdb/testsuite/gdb.c++/namespace.exp @@ -80,7 +80,7 @@ gdb_test "up" ".*main.*" "up from marker1" send_gdb "print 'AAA::c'\n" gdb_expect { - -re "\\$\[0-9\]* = 0 '\\\\0'\r\n$gdb_prompt $" { pass "print 'AAA::c'" } + -re "\\$\[0-9\]* = 0 '\\\\(0|000)'\r\n$gdb_prompt $" { pass "print 'AAA::c'" } -re ".*$gdb_prompt $" { fail "print 'AAA::c'" } timeout { fail "(timeout) print 'AAA::c'" } } |