ab97f6969e5d68fdf54a7176f80410fb1b473d00
[binutils-gdb.git] / gdb / testsuite / gdb.arch / system-gcore.exp
1 # Copyright 2010-2012 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 3 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, see <http://www.gnu.org/licenses/>.
15
16
17 if { ![istarget i?86-*-linux*] && ![istarget x86_64-*-linux* ] } {
18 verbose "Skipping system register gcore tests."
19 return
20 }
21
22 set testfile "system-gcore"
23 set srcfile gcore.c
24 set binfile ${objdir}/${subdir}/${testfile}
25
26 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
27 untested system-gcore.exp
28 return -1
29 }
30
31 # Start with a fresh gdb.
32
33 gdb_exit
34 gdb_start
35 gdb_reinitialize_dir $srcdir/$subdir
36 gdb_load ${binfile}
37
38 # Does this gdb support gcore?
39 send_gdb "help gcore\n"
40 gdb_expect {
41 -re "Undefined command: .gcore.*$gdb_prompt $" {
42 # gcore command not supported -- nothing to test here.
43 unsupported "gdb does not support gcore on this target"
44 return -1;
45 }
46 -re "Save a core file .*$gdb_prompt $" {
47 pass "help gcore"
48 }
49 -re ".*$gdb_prompt $" {
50 fail "help gcore"
51 }
52 timeout {
53 fail "help gcore (timeout)"
54 }
55 }
56
57 if { ! [ runto_main ] } then {
58 untested system-gcore.exp
59 return -1
60 }
61
62 proc capture_command_output { command prefix } {
63 global gdb_prompt
64 global expect_out
65
66 set output_string ""
67 gdb_test_multiple "$command" "capture_command_output for $command" {
68 -re "${command}\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
69 set output_string $expect_out(1,string)
70 }
71 }
72 return $output_string
73 }
74
75 gdb_test "break terminal_func" "Breakpoint .* at .*${srcfile}, line .*" \
76 "set breakpoint at terminal_func"
77
78 gdb_test "continue" "Breakpoint .* terminal_func.*" \
79 "continue to terminal_func"
80
81 set print_prefix ".\[0123456789\]* = "
82
83 set pre_corefile_backtrace [capture_command_output "backtrace" ""]
84 set pre_corefile_regs [capture_command_output "info registers" ""]
85 set pre_corefile_allregs [capture_command_output "info all-reg" ""]
86 set pre_corefile_sysregs [capture_command_output "info reg system" ""]
87 set pre_corefile_static_array \
88 [capture_command_output "print static_array" "$print_prefix"]
89 set pre_corefile_uninit_array \
90 [capture_command_output "print un_initialized_array" "$print_prefix"]
91 set pre_corefile_heap_string \
92 [capture_command_output "print heap_string" "$print_prefix"]
93 set pre_corefile_local_array \
94 [capture_command_output "print array_func::local_array" "$print_prefix"]
95 set pre_corefile_extern_array \
96 [capture_command_output "print extern_array" "$print_prefix"]
97
98 set escapedfilename [string_to_regexp ${objdir}/${subdir}/gcore.test]
99
100 set core_supported 0
101 gdb_test_multiple "gcore ${objdir}/${subdir}/gcore.test" \
102 "save a corefile" \
103 {
104 -re "Saved corefile ${escapedfilename}\[\r\n\]+$gdb_prompt $" {
105 pass "save a corefile"
106 global core_supported
107 set core_supported 1
108 }
109 -re "Can't create a corefile\[\r\n\]+$gdb_prompt $" {
110 unsupported "save a corefile"
111 global core_supported
112 set core_supported 0
113 }
114 }
115
116 if {!$core_supported} {
117 return -1
118 }
119
120 # Now restart gdb and load the corefile.
121 gdb_exit
122 gdb_start
123 gdb_reinitialize_dir $srcdir/$subdir
124 gdb_load ${binfile}
125
126 send_gdb "core ${objdir}/${subdir}/gcore.test\n"
127 gdb_expect {
128 -re ".* is not a core dump:.*$gdb_prompt $" {
129 fail "re-load generated corefile (bad file format)"
130 # No use proceeding from here.
131 return;
132 }
133 -re ".*: No such file or directory.*$gdb_prompt $" {
134 fail "re-load generated corefile (file not found)"
135 # No use proceeding from here.
136 return;
137 }
138 -re ".*Couldn't find .* registers in core file.*$gdb_prompt $" {
139 fail "re-load generated corefile (incomplete note section)"
140 }
141 -re "Core was generated by .*$gdb_prompt $" {
142 pass "re-load generated corefile"
143 }
144 -re ".*$gdb_prompt $" {
145 fail "re-load generated corefile"
146 }
147 timeout {
148 fail "re-load generated corefile (timeout)"
149 }
150 }
151
152 gdb_test_sequence "where" "where in corefile" {
153 "\[\r\n\]+#0 .* terminal_func \\(\\) at "
154 "\[\r\n\]+#1 .* array_func \\(\\) at "
155 "\[\r\n\]+#2 .* factorial_func \\(value=1\\) at "
156 "\[\r\n\]+#3 .* factorial_func \\(value=2\\) at "
157 "\[\r\n\]+#4 .* factorial_func \\(value=3\\) at "
158 "\[\r\n\]+#5 .* factorial_func \\(value=4\\) at "
159 "\[\r\n\]+#6 .* factorial_func \\(value=5\\) at "
160 "\[\r\n\]+#7 .* factorial_func \\(value=6\\) at "
161 "\[\r\n\]+#8 .* main \\(.*\\) at "
162 }
163
164 set post_corefile_regs [capture_command_output "info registers" ""]
165 if ![string compare $pre_corefile_regs $post_corefile_regs] then {
166 pass "corefile restored general registers"
167 } else {
168 fail "corefile restored general registers"
169 }
170
171 set post_corefile_allregs [capture_command_output "info all-reg" ""]
172 if ![string compare $pre_corefile_allregs $post_corefile_allregs] then {
173 pass "corefile restored all registers"
174 } else {
175 fail "corefile restored all registers"
176 }
177
178 set post_corefile_sysregs [capture_command_output "info reg system" ""]
179 if ![string compare $pre_corefile_sysregs $post_corefile_sysregs] then {
180 pass "corefile restored system registers"
181 } else {
182 fail "corefile restored system registers"
183 }
184
185 set post_corefile_extern_array \
186 [capture_command_output "print extern_array" "$print_prefix"]
187 if ![string compare $pre_corefile_extern_array $post_corefile_extern_array] {
188 pass "corefile restored extern array"
189 } else {
190 fail "corefile restored extern array"
191 }
192
193 set post_corefile_static_array \
194 [capture_command_output "print static_array" "$print_prefix"]
195 if ![string compare $pre_corefile_static_array $post_corefile_static_array] {
196 pass "corefile restored static array"
197 } else {
198 fail "corefile restored static array"
199 }
200
201 set post_corefile_uninit_array \
202 [capture_command_output "print un_initialized_array" "$print_prefix"]
203 if ![string compare $pre_corefile_uninit_array $post_corefile_uninit_array] {
204 pass "corefile restored un-initialized array"
205 } else {
206 fail "corefile restored un-initialized array"
207 }
208
209 set post_corefile_heap_string \
210 [capture_command_output "print heap_string" "$print_prefix"]
211 if ![string compare $pre_corefile_heap_string $post_corefile_heap_string] {
212 pass "corefile restored heap array"
213 } else {
214 fail "corefile restored heap array"
215 }
216
217 set post_corefile_local_array \
218 [capture_command_output "print array_func::local_array" "$print_prefix"]
219 if ![string compare $pre_corefile_local_array $post_corefile_local_array] {
220 pass "corefile restored stack array"
221 } else {
222 fail "corefile restored stack array"
223 }
224
225 set post_corefile_backtrace [capture_command_output "backtrace" ""]
226 if ![string compare $pre_corefile_backtrace $post_corefile_backtrace] {
227 pass "corefile restored backtrace"
228 } else {
229 fail "corefile restored backtrace"
230 }