* gdb.base/gdb1476.exp: Accept alternat pattern for failed memory

read at address 0.  This fixes PR testsuite/1504.
This commit is contained in:
Mark Kettenis 2004-01-18 16:35:11 +00:00
parent da6012e52d
commit 52470da313
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-01-18 Mark Kettenis <kettenis@gnu.org>
* gdb.base/gdb1476.exp: Accept alternat pattern for failed memory
read at address 0. This fixes PR testsuite/1504.
2004-01-18 Daniel Jacobowitz <drow@mvista.com>
* config/gdbserver.exp (gdbserver_gdb_load): Rename from gdb_load.

View File

@ -56,6 +56,7 @@ if ![runto_main] then {
send_gdb "x 0\n"
gdb_expect {
-re "0x0:.*Cannot access memory at address 0x0.*$gdb_prompt $" { }
-re "0x0:.*Error accessing memory address 0x0.*$gdb_prompt $" { }
-re ".*$gdb_prompt $" {
untested "Memory at address 0 is possibly executable"
@ -68,4 +69,4 @@ gdb_test "continue" "Program received signal SIGSEGV.*" \
gdb_test "backtrace 10" \
"#0\[ \t\]*0x0* in .*\r\n#1\[ \t\]*$hex in x.*\r\n#2\[ \t\]*$hex in main.*" \
"backtrace from null pointer call"
"backtrace from null pointer call"