* gdb.base/corefile.exp: Recognize the message saying that GDB

can't find the core file's registers as a failure.
This commit is contained in:
Jim Blandy 2001-12-17 21:03:48 +00:00
parent 47a849606f
commit b9891b29d8
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-12-17 Jim Blandy <jimb@redhat.com>
* gdb.base/corefile.exp: Recognize the message saying that GDB
can't find the core file's registers as a failure.
2001-12-13 Jackie Smith Cashion <jsmith@redhat.com>
* gdb.base/commands.exp (user_defined_command_test): Make "show user"

View File

@ -110,6 +110,9 @@ set timeout [expr "$timeout + 60"]
verbose "Timeout is now $timeout seconds" 2
eval "spawn $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile"
expect {
-re "Couldn't find .* registers in core file.*$gdb_prompt $" {
fail "args: -core=corefile (couldn't find regs)"
}
-re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
pass "args: -core=corefile"
}