1 # Copyright 1992-2000, 2007-2012 Free Software Foundation, Inc.
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 3 of the License, or
6 # (at your option) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 # This file was written by Fred Fish. (fnf@cygnus.com)
19 # are we on a target board
24 set testfile "coremaker"
25 set srcfile ${testfile}.c
26 set binfile ${objdir}/${subdir}/${testfile}
27 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
32 # Create and source the file that provides information about the compiler
33 # used to compile the test case.
34 if [get_compiler_info] {
38 set corefile [core_find $binfile {coremmap.data}]
39 if {$corefile == ""} {
43 # Test that we can simply startup with a "-core=$corefile" command line arg
44 # and recognize that the core file is a valid, usable core file.
45 # To do this, we must shutdown the currently running gdb and restart
46 # with the -core args. We can't use gdb_start because it looks for
47 # the first gdb prompt, and the message we are looking for occurs
48 # before the first prompt.
50 # Another problem is that on some systems (solaris for example), there
51 # is apparently a limit on the length of a fully specified path to
52 # the coremaker executable, at about 80 chars. For this case, consider
53 # it a pass, but note that the program name is bad.
57 send_user "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS -core=$corefile\n"
60 set oldtimeout $timeout
61 set timeout [expr "$timeout + 60"]
62 verbose "Timeout is now $timeout seconds" 2
63 eval "spawn $GDB $INTERNAL_GDBFLAGS $GDBFLAGS -core=$corefile"
65 -re "Couldn't find .* registers in core file.*$gdb_prompt $" {
66 fail "args: -core=[file tail $corefile] (couldn't find regs)"
68 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
69 pass "args: -core=[file tail $corefile]"
71 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
72 pass "args: -core=[file tail $corefile] (with bad program name)"
74 -re ".*registers from core file: File in wrong format.* $" {
75 fail "args: -core=[file tail $corefile] (could not read registers from core file)"
77 -re ".*$gdb_prompt $" { fail "args: -core=[file tail $corefile]" }
78 timeout { fail "(timeout) starting with -core" }
83 # Test that startup with both an executable file and -core argument.
84 # See previous comments above, they are still applicable.
90 send_user "Spawning $GDB $INTERNAL_GDBFLAGS $GDBFLAGS $binfile -core=$corefile\n"
94 eval "spawn $GDB $INTERNAL_GDBFLAGS $GDBFLAGS $binfile -core=$corefile";
96 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
97 pass "args: execfile -core=[file tail $corefile]"
99 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
100 pass "args: execfile -core=[file tail $corefile] (with bad program name)"
102 -re ".*registers from core file: File in wrong format.* $" {
103 fail "args: execfile -core=[file tail $corefile] (could not read registers from core file)"
105 -re ".*$gdb_prompt $" { fail "args: execfile -core=[file tail $corefile]" }
106 timeout { fail "(timeout) starting with -core" }
108 set timeout $oldtimeout
109 verbose "Timeout is now $timeout seconds" 2
113 # Now restart normally.
116 gdb_reinitialize_dir $srcdir/$subdir
119 # Test basic corefile recognition via core-file command.
121 gdb_test_multiple "core-file $corefile" "core-file command" {
122 -re ".* program is being debugged already.*y or n. $" {
123 # gdb_load may connect us to a gdbserver.
127 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
128 pass "core-file command"
130 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
131 pass "core-file command (with bad program name)"
133 -re ".*registers from core file: File in wrong format.* $" {
134 fail "core-file command (could not read registers from core file)"
138 # Test correct mapping of corefile sections by printing some variables.
140 gdb_test "print coremaker_data" "\\\$$decimal = 202"
141 gdb_test "print coremaker_bss" "\\\$$decimal = 10"
142 gdb_test "print coremaker_ro" "\\\$$decimal = 201"
144 gdb_test "print func2::coremaker_local" "\\\$$decimal = \\{0, 1, 2, 3, 4\\}"
146 # Somehow we better test the ability to read the registers out of the core
147 # file correctly. I don't think the other tests do this.
149 gdb_test "bt" "abort.*func2.*func1.*main.*" "backtrace in corefile.exp"
150 gdb_test "up" "#\[0-9\]* *\[0-9xa-fH'\]* in .* \\(.*\\).*" "up in corefile.exp"
152 # Test ability to read mmap'd data
154 gdb_test "x/8bd buf1" ".*:.*0.*1.*2.*3.*4.*5.*6.*7" "accessing original mmap data in core file"
155 setup_xfail "*-*-sunos*" "*-*-ultrix*" "*-*-aix*"
156 set test "accessing mmapped data in core file"
157 gdb_test_multiple "x/8bd buf2" "$test" {
158 -re ".*:.*0.*1.*2.*3.*4.*5.*6.*7.*$gdb_prompt $" {
161 -re "0x\[f\]*:.*Cannot access memory at address 0x\[f\]*.*$gdb_prompt $" {
162 fail "$test (mapping failed at runtime)"
164 -re "0x.*:.*Cannot access memory at address 0x.*$gdb_prompt $" {
165 fail "$test (mapping address not found in core file)"
169 # test reinit_frame_cache
172 gdb_test "up" "#\[0-9\]* *\[0-9xa-fH'\]* in .* \\(.*\\).*" "up in corefile.exp (reinit)"
174 gdb_test "core" "No core file now."
177 # Test a run (start) command will clear any loaded core file.
179 gdb_test "core-file $corefile" "Core was generated by .*" "run: load core again"
180 gdb_test "info files" "\r\nLocal core dump file:\r\n.*" "run: sanity check we see the core file"
182 set test "run: with core"
189 set test "run: core file is cleared"
190 gdb_test_multiple "info files" $test {
191 -re "\r\nLocal core dump file:\r\n.*\r\n$gdb_prompt $" {
194 -re "\r\n$gdb_prompt $" {
199 set test "quit with a process"
200 gdb_test_multiple "quit" $test {
201 -re "A debugging session is active.\r\n.*\r\nQuit anyway\\? \\(y or n\\) $" {
203 gdb_test "n" {Not confirmed\.} "quit with processes: n"
209 # Verify there is no question if only a core file is loaded.
212 gdb_test "core-file $corefile" "Core was generated by .*" "no question: load core"
214 set test "quit with a core file"
215 gdb_test_multiple "quit" $test {
216 -re "A debugging session is active.\r\n.*\r\nQuit anyway\\? \\(y or n\\) $" {
218 gdb_test "n" {Not confirmed\.} "quit with processes: n"
227 # Test an attach command will clear any loaded core file.
229 if ![is_remote target] {
230 set test "attach: spawn sleep"
231 set res [remote_spawn host "$binfile sleep"];
232 if { $res < 0 || $res == "" } {
236 set pid [exp_pid -i $res]
237 # We don't care whether the program is still in the startup phase when we
242 gdb_test "core-file $corefile" "Core was generated by .*" "attach: load core again"
243 gdb_test "info files" "\r\nLocal core dump file:\r\n.*" "attach: sanity check we see the core file"
245 gdb_test "attach $pid" "Attaching to process $pid\r\n.*" "attach: with core"
247 set test "attach: core file is cleared"
248 gdb_test_multiple "info files" $test {
249 -re "\r\nLocal core dump file:\r\n.*\r\n$gdb_prompt $" {
252 -re "\r\n$gdb_prompt $" {