* gdb.base/completion.exp: Recognize the more detailed error
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / corefile.exp
CommitLineData
b6ba6518
KB
1# Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
2# Free Software Foundation, Inc.
c906108c
SS
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18# Please email any bugs, comments, and/or additions to this file to:
19# bug-gdb@prep.ai.mit.edu
20
21# This file was written by Fred Fish. (fnf@cygnus.com)
22
23if $tracelevel then {
24 strace $tracelevel
25}
26
27set prms_id 0
28set bug_id 0
29
30# are we on a target board
31if ![isnative] then {
32 return
33}
34
35set testfile "coremaker"
36set srcfile ${testfile}.c
37set binfile ${objdir}/${subdir}/${testfile}
38if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
39 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
40}
41
42# Create and source the file that provides information about the compiler
43# used to compile the test case.
44if [get_compiler_info ${binfile}] {
45 return -1;
46}
47
48# Create a core file named "corefile" rather than just "core", to
49# avoid problems with sys admin types that like to regularly prune all
50# files named "core" from the system.
51#
52# Arbitrarily try setting the core size limit to "unlimited" since
53# this does not hurt on systems where the command does not work and
54# allows us to generate a core on systems where it does.
55#
56# Some systems append "core" to the name of the program; others append
57# the name of the program to "core".
58set found 0
59catch "system \"(cd ${objdir}/${subdir}; ulimit -c unlimited; ${binfile}; true) >/dev/null 2>&1\""
60# remote_exec host "${binfile}"
61foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
62 if [remote_file build exists $i] {
63 remote_exec build "mv $i ${objdir}/${subdir}/corefile"
64 set found 1
65 }
66}
67if { $found == 0 } {
68 # The braindamaged HPUX shell quits after the ulimit -c above
69 # without executing ${binfile}. So we try again without the
70 # ulimit here if we didn't find a core file above.
71 # Oh, I should mention that any "braindamaged" non-Unix system has
72 # the same problem. I like the cd bit too, it's really neat'n stuff.
73 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
74 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
75 if [remote_file build exists $i] {
76 remote_exec build "mv $i ${objdir}/${subdir}/corefile"
77 set found 1
78 }
79 }
80
81 if { $found == 0 } {
82 warning "can't generate a core file - core tests suppressed - check ulimit -c"
83 return 0
84 }
85}
86
87#
88# Test that we can simply startup with a "-core=corefile" command line arg
89# and recognize that the core file is a valid, usable core file.
90# To do this, we must shutdown the currently running gdb and restart
91# with the -core args. We can't use gdb_start because it looks for
92# the first gdb prompt, and the message we are looking for occurs
93# before the first prompt. Also, we can't include GDBFLAGS because
94# if it is empty, this confuses gdb with an empty argument that it
95# grumbles about (said grumbling currently being ignored in gdb_start).
96# **FIXME**
97#
98# Another problem is that on some systems (solaris for example), there
99# is apparently a limit on the length of a fully specified path to
100# the coremaker executable, at about 80 chars. For this case, consider
101# it a pass, but note that the program name is bad.
102
103gdb_exit
104if $verbose>1 then {
105 send_user "Spawning $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile\n"
106}
107
108set oldtimeout $timeout
109set timeout [expr "$timeout + 60"]
110verbose "Timeout is now $timeout seconds" 2
111eval "spawn $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile"
112expect {
b9891b29
JB
113 -re "Couldn't find .* registers in core file.*$gdb_prompt $" {
114 fail "args: -core=corefile (couldn't find regs)"
115 }
c906108c
SS
116 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
117 pass "args: -core=corefile"
118 }
119 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
120 pass "args: -core=corefile (with bad program name)"
121 }
122 -re ".*registers from core file: File in wrong format.* $" {
123 fail "args: -core=corefile (could not read registers from core file)"
124 }
125 -re ".*$gdb_prompt $" { fail "args: -core=corefile" }
126 timeout { fail "(timeout) starting with -core" }
127}
128
129
130#
131# Test that startup with both an executable file and -core argument.
132# See previous comments above, they are still applicable.
133#
134
135close;
136
137if $verbose>1 then {
138 send_user "Spawning $GDB -nw $GDBFLAGS $binfile -core=$objdir/$subdir/corefile\n"
139}
140
141
142eval "spawn $GDB -nw $GDBFLAGS $binfile -core=$objdir/$subdir/corefile";
143expect {
144 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
145 pass "args: execfile -core=corefile"
146 }
147 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
148 pass "args: execfile -core=corefile (with bad program name)"
149 }
150 -re ".*registers from core file: File in wrong format.* $" {
151 fail "args: execfile -core=corefile (could not read registers from core file)"
152 }
153 -re ".*$gdb_prompt $" { fail "args: execfile -core=corefile" }
154 timeout { fail "(timeout) starting with -core" }
155}
156set timeout $oldtimeout
157verbose "Timeout is now $timeout seconds" 2
158
159close;
160
161# Now restart normally.
162
163gdb_start
164gdb_reinitialize_dir $srcdir/$subdir
165gdb_load ${binfile}
166
167# Test basic corefile recognition via core-file command.
168
169send_gdb "core-file $objdir/$subdir/corefile\n"
170gdb_expect {
958a4e4c
MS
171 -re ".* program is being debugged already.*y or n. $" {
172 # gdb_load may connect us to a gdbserver.
173 send_gdb "y\n"
174 exp_continue;
175 }
c906108c
SS
176 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
177 pass "core-file command"
178 }
179 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
180 pass "core-file command (with bad program name)"
181 }
182 -re ".*registers from core file: File in wrong format.* $" {
183 fail "core-file command (could not read registers from core file)"
184 }
185 -re ".*$gdb_prompt $" { fail "core-file command" }
186 timeout { fail "(timeout) core-file command" }
187}
188
189# Test correct mapping of corefile sections by printing some variables.
190
191gdb_test "print coremaker_data" "\\\$$decimal = 202"
192gdb_test "print coremaker_bss" "\\\$$decimal = 10"
193gdb_test "print coremaker_ro" "\\\$$decimal = 201"
194
d85da69f 195gdb_test "print func2::coremaker_local" "\\\$$decimal = \\{0, 1, 2, 3, 4\\}"
c906108c
SS
196
197# Somehow we better test the ability to read the registers out of the core
198# file correctly. I don't think the other tests do this.
199
200gdb_test "bt" "abort.*func2.*func1.*main.*" "backtrace in corefile.exp"
d4f3574e 201gdb_test "up" "#\[0-9\]* *\[0-9xa-fH'\]* in .* \\(.*\\).*" "up in corefile.exp"
c906108c
SS
202
203# Test ability to read mmap'd data
204
205gdb_test "x/8bd buf1" ".*:.*0.*1.*2.*3.*4.*5.*6.*7" "accessing original mmap data in core file"
206setup_xfail "*-*-sunos*" "*-*-ultrix*" "*-*-aix*"
207send_gdb "x/8bd buf2\n"
208gdb_expect {
209 -re ".*:.*0.*1.*2.*3.*4.*5.*6.*7.*$gdb_prompt $" {
210 pass "accessing mmapped data in core file"
211 }
212 -re "0x\[f\]*:.*Cannot access memory at address 0x\[f\]*.*$gdb_prompt $" {
213 fail "accessing mmapped data (mapping failed at runtime)"
214 }
215 -re "0x.*:.*Cannot access memory at address 0x.*$gdb_prompt $" {
216 fail "accessing mmapped data (mapping address not found in core file)"
217 }
218 -re ".*$gdb_prompt $" {
219 fail "accessing mmapped data (incorrect data found in core file)"
220 }
221 timeout {
222 fail "accessing mmapped data (timeout)"
223 }
224}
225
226# test reinit_frame_cache
227
228gdb_load ${binfile}
a0b3c4fd 229setup_xfail "*-*-*" CLLbs17002
085dd6e6 230gdb_test "up" "#\[0-9\]* *\[0-9xa-fH'\]* in .* \\(\\)" "up in corefile.exp (reinit)"
c906108c
SS
231
232gdb_test "core" "No core file now."
This page took 0.216672 seconds and 4 git commands to generate.