Major revision to testsuites for cross-testing and DOS testing support.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / corefile.exp
1 # Copyright (C) 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-gdb@prep.ai.mit.edu
19
20 # This file was written by Fred Fish. (fnf@cygnus.com)
21
22 if $tracelevel then {
23 strace $tracelevel
24 }
25
26 set prms_id 0
27 set bug_id 0
28
29 # are we on a target board
30 if ![isnative] then {
31 return
32 }
33
34 set testfile "coremaker"
35 set srcfile ${testfile}.c
36 set binfile ${objdir}/${subdir}/${testfile}
37 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
38 perror "Couldn't compile ${srcfile}"
39 return -1
40 }
41
42 # Create and source the file that provides information about the compiler
43 # used to compile the test case.
44 if [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".
58 set found 0
59 catch "system \"(cd ${objdir}/${subdir}; ulimit -c unlimited; ${binfile}; true) >/dev/null 2>&1\""
60 # remote_exec "${binfile}"
61 foreach 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 }
67 if { $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 catch "system \"(cd ${objdir}/${subdir}; ${binfile}; true) >/dev/null 2>&1\""
72 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
73 set exec_output [execute_anywhere "ls $i"]
74 if [ regexp "No such file or directory|not found" ${exec_output} ] {
75 continue
76 } else {
77 execute_anywhere "mv $i ${objdir}/${subdir}/corefile"
78 set found 1
79 }
80 }
81
82 if { $found == 0 } {
83 warning "can't generate a core file - core tests suppressed - check ulimit -c"
84 return 0
85 }
86 }
87
88 #
89 # Test that we can simply startup with a "-core=corefile" command line arg
90 # and recognize that the core file is a valid, usable core file.
91 # To do this, we must shutdown the currently running gdb and restart
92 # with the -core args. We can't use gdb_start because it looks for
93 # the first gdb prompt, and the message we are looking for occurs
94 # before the first prompt. Also, we can't include GDBFLAGS because
95 # if it is empty, this confuses gdb with an empty argument that it
96 # grumbles about (said grumbling currently being ignored in gdb_start).
97 # **FIXME**
98 #
99 # Another problem is that on some systems (solaris for example), there
100 # is apparently a limit on the length of a fully specified path to
101 # the coremaker executable, at about 80 chars. For this case, consider
102 # it a pass, but note that the program name is bad.
103
104 gdb_exit
105 if $verbose>1 then {
106 send_user "Spawning $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile\n"
107 }
108
109 set oldtimeout $timeout
110 set timeout [expr "$timeout + 60"]
111 verbose "Timeout is now $timeout seconds" 2
112 eval "spawn $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile"
113 expect {
114 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$prompt $" {
115 pass "args: -core=corefile"
116 }
117 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$prompt $" {
118 pass "args: -core=corefile (with bad program name)"
119 }
120 -re ".*registers from core file: File in wrong format.* $" {
121 fail "args: -core=corefile (could not read registers from core file)"
122 }
123 -re ".*$prompt $" { fail "args: -core=corefile" }
124 timeout { fail "(timeout) starting with -core" }
125 }
126
127
128 #
129 # Test that startup with both an executable file and -core argument.
130 # See previous comments above, they are still applicable.
131 #
132
133 close;
134
135 if $verbose>1 then {
136 send_user "Spawning $GDB -nw $GDBFLAGS $binfile -core=$objdir/$subdir/corefile\n"
137 }
138
139
140 eval "spawn $GDB -nw $GDBFLAGS $binfile -core=$objdir/$subdir/corefile";
141 expect {
142 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$prompt $" {
143 pass "args: execfile -core=corefile"
144 }
145 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$prompt $" {
146 pass "args: execfile -core=corefile (with bad program name)"
147 }
148 -re ".*registers from core file: File in wrong format.* $" {
149 fail "args: execfile -core=corefile (could not read registers from core file)"
150 }
151 -re ".*$prompt $" { fail "args: execfile -core=corefile" }
152 timeout { fail "(timeout) starting with -core" }
153 }
154 set timeout $oldtimeout
155 verbose "Timeout is now $timeout seconds" 2
156
157 close;
158
159 # Now restart normally.
160
161 gdb_start
162 gdb_reinitialize_dir $srcdir/$subdir
163 gdb_load ${binfile}
164
165 # Test basic corefile recognition via core-file command.
166
167 send_gdb "core-file $objdir/$subdir/corefile\n"
168 expect {
169 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$prompt $" {
170 pass "core-file command"
171 }
172 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$prompt $" {
173 pass "core-file command (with bad program name)"
174 }
175 -re ".*registers from core file: File in wrong format.* $" {
176 fail "core-file command (could not read registers from core file)"
177 }
178 -re ".*$prompt $" { fail "core-file command" }
179 timeout { fail "(timeout) core-file command" }
180 }
181
182 # Test correct mapping of corefile sections by printing some variables.
183
184 gdb_test "print coremaker_data" "\\\$$decimal = 202"
185 gdb_test "print coremaker_bss" "\\\$$decimal = 10"
186 gdb_test "print coremaker_ro" "\\\$$decimal = 201"
187
188 setup_xfail "i*86-*-sysv4*" "i*86-pc-linux*-gnu" "m68*-*-hpux*"
189 if {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" }
190 gdb_test "print func2::coremaker_local" "\\\$$decimal = {0, 1, 2, 3, 4}"
191
192 # Somehow we better test the ability to read the registers out of the core
193 # file correctly. I don't think the other tests do this.
194
195 # Haven't investigated this xfail
196 setup_xfail "m68k-*-hpux*" "i*86-*-sysv4*" "i*86-pc-linux*-gnu"
197 gdb_test "bt" "abort.*func2.*func1.*main.*" "backtrace in corefile.exp"
198
199 # Test ability to read mmap'd data
200
201 gdb_test "x/8bd buf1" ".*:.*0.*1.*2.*3.*4.*5.*6.*7" "accessing original mmap data in core file"
202 setup_xfail "*-*-sunos*" "*-*-ultrix*" "*-*-aix*"
203 send_gdb "x/8bd buf2\n"
204 expect {
205 -re ".*:.*0.*1.*2.*3.*4.*5.*6.*7.*$prompt $" {
206 pass "accessing mmapped data in core file"
207 }
208 -re "0x\[f\]*:.*Cannot access memory at address 0x\[f\]*.*$prompt $" {
209 fail "accessing mmapped data (mapping failed at runtime)"
210 }
211 -re "0x.*:.*Cannot access memory at address 0x.*$prompt $" {
212 fail "accessing mmapped data (mapping address not found in core file)"
213 }
214 -re ".*$prompt $" {
215 fail "accessing mmapped data (incorrect data found in core file)"
216 }
217 timeout {
218 fail "accessing mmapped data (timeout)"
219 }
220 }
221
222 # test reinit_frame_cache
223
224 gdb_load ${binfile}
225 setup_xfail "*-*-*"
226 gdb_test "up" "#\[0-9\]* *\[0-9xa-fH'\]* in .* \\(\\)" "up in corefile.exp"
227
228 gdb_test "core" "No core file now."
This page took 0.051016 seconds and 5 git commands to generate.