* lib/gdb.exp (default_gdb_start): Fix typo.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / corefile.exp
1 # Copyright (C) 1992, 1993, 1994, 1995 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 { [compile "${srcdir}/${subdir}/${srcfile} -g -o ${binfile}"] != "" } {
38 perror "Couldn't compile ${srcfile}"
39 return -1
40 }
41
42 execute_anywhere "rm -f ${binfile}.ci"
43 if { [compile "-E ${srcdir}/${subdir}/compiler.c > ${binfile}.ci"] != "" } {
44 perror "Couldn't make ${testfile}.ci file"
45 return -1
46 }
47
48 if ![file exists ${objdir}/${subdir}/corefile] then {
49 # Create a core file named "corefile" rather than just "core", to
50 # avoid problems with sys admin types that like to regularly prune all
51 # files named "core" from the system.
52 #
53 # Arbitrarily try setting the core size limit to "unlimited" since
54 # this does not hurt on systems where the command does not work and
55 # allows us to generate a core on systems where it does.
56 #
57 # Some systems append "core" to the name of the program; others append
58 # the name of the program to "core".
59 set found 0
60 catch "system \"cd ${objdir}/${subdir}; ulimit -c unlimited; ${binfile}\""
61 # execute_anywhere "${binfile}"
62 foreach i "${objdir}/${subdir}/core ${objdir}/${subdir}/core.coremaker.c ${binfile}.core" {
63 set exec_output [execute_anywhere "ls $i"]
64 if [ regexp "No such file or directory" ${exec_output} ] {
65 continue
66 } else {
67 execute_anywhere "mv $i ${objdir}/${subdir}/corefile"
68 set found 1
69 }
70 }
71 if { $found == 0 } {
72 warning "can't generate a core file - core tests suppressed - check ulimit -c"
73 return 0
74 }
75 }
76
77 #
78 # Test that we can simply startup with a "-core=corefile" command line arg
79 # and recognize that the core file is a valid, usable core file.
80 # To do this, we must shutdown the currently running gdb and restart
81 # with the -core args. We can't use gdb_start because it looks for
82 # the first gdb prompt, and the message we are looking for occurs
83 # before the first prompt. Also, we can't include GDBFLAGS because
84 # if it is empty, this confuses gdb with an empty argument that it
85 # grumbles about (said grumbling currently being ignored in gdb_start).
86 # **FIXME**
87 #
88 # Another problem is that on some systems (solaris for example), there
89 # is apparently a limit on the length of a fully specified path to
90 # the coremaker executable, at about 80 chars. For this case, consider
91 # it a pass, but note that the program name is bad.
92
93 gdb_exit
94 if $verbose>1 then {
95 send_user "Spawning $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile\n"
96 }
97
98 set oldtimeout $timeout
99 set timeout [expr "$timeout + 60"]
100 eval "spawn $GDB -nw $GDBFLAGS -core=$objdir/$subdir/corefile"
101 expect {
102 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$prompt $" {
103 pass "args: -core=corefile"
104 }
105 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$prompt $" {
106 pass "args: -core=corefile (with bad program name)"
107 }
108 -re ".*$prompt $" { fail "args: -core=corefile" }
109 timeout { fail "(timeout) starting with -core" }
110 }
111
112
113 #
114 # Test that startup with both an executable file and -core argument.
115 # See previous comments above, they are still applicable.
116 #
117
118 gdb_exit
119 if $verbose>1 then {
120 send_user "Spawning $GDB -nw $GDBFLAGS $binfile -core=$objdir/$subdir/corefile\n"
121 }
122
123
124 spawn $GDB -nw $GDBFLAGS $binfile -core=$objdir/$subdir/corefile
125 expect {
126 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$prompt $" {
127 pass "args: execfile -core=corefile"
128 }
129 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$prompt $" {
130 pass "args: execfile -core=corefile (with bad program name)"
131 }
132 -re ".*$prompt $" { fail "args: execfile -core=corefile" }
133 timeout { fail "(timeout) starting with -core" }
134 }
135 set timeout $oldtimeout
136
137
138 # Now restart normally.
139
140 gdb_exit
141 gdb_start
142 gdb_reinitialize_dir $srcdir/$subdir
143 gdb_load ${binfile}
144
145 source gdb.base/coremaker.ci
146
147 # Test basic corefile recognition via core-file command.
148
149 send "core-file $objdir/$subdir/corefile\n"
150 expect {
151 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$prompt $" {
152 pass "core-file command"
153 }
154 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$prompt $" {
155 pass "core-file command (with bad program name)"
156 }
157 -re ".*$prompt $" { fail "core-file command" }
158 timeout { fail "(timeout) core-file command" }
159 }
160
161 # Test correct mapping of corefile sections by printing some variables.
162
163 gdb_test "print coremaker_data" "\\\$$decimal = 202"
164 gdb_test "print coremaker_bss" "\\\$$decimal = 10"
165 gdb_test "print coremaker_ro" "\\\$$decimal = 201"
166
167 # Linux GDB is unable to backtrace properly from an abort system call,
168 # so trying to access a local variable in the stack fails too.
169 setup_xfail "i*86-*-linux*" "i*86-*-sysv4*"
170 gdb_test "print func2::coremaker_local" "\\\$$decimal = {0, 1, 2, 3, 4}"
171
172 # Somehow we better test the ability to read the registers out of the core
173 # file correctly. I don't think the other tests do this.
174
175 # Haven't investigated this xfail
176 setup_xfail "m68k-*-hpux*" "i*86-*-linux*" "i*86-*-sysv4*"
177 # Strange that this one depends upon being native compiled.
178 gdb_test "bt" "abort.*func2.*func1.*main.*" "backtrace in corefile.exp"
179
180 # test reinit_frame_cache
181
182 gdb_load ${binfile}
183 setup_xfail "*-*-*"
184 gdb_test "up" "#\[0-9\]* *\[0-9xa-fH'\]* in .* \\(\\)" "up in corefile.exp"
185
186 gdb_test "core" "No core file now."
This page took 0.038322 seconds and 4 git commands to generate.