[Committing the `catch syscall' patch for ARM, from Samuel Bronson.]
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / gcore.exp
CommitLineData
28e7fd62 1# Copyright 2002-2013 Free Software Foundation, Inc.
a911c360
MS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
a911c360 6# (at your option) any later version.
e22f8b7c 7#
a911c360
MS
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.
e22f8b7c 12#
a911c360 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
a911c360 15
a911c360
MS
16# This file was written by Michael Snyder (msnyder@redhat.com)
17# This is a test for the gdb command "generate-core-file".
18
a911c360 19
289f9037 20standard_testfile
a911c360 21
289f9037
TT
22if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
23 untested $testfile.exp
24 return -1
a911c360
MS
25}
26
a911c360 27# Does this gdb support gcore?
a76e022a 28gdb_test_multiple "help gcore" "help gcore" {
a911c360
MS
29 -re "Undefined command: .gcore.*$gdb_prompt $" {
30 # gcore command not supported -- nothing to test here.
31 unsupported "gdb does not support gcore on this target"
ae59b1da 32 return -1
a911c360
MS
33 }
34 -re "Save a core file .*$gdb_prompt $" {
35 pass "help gcore"
36 }
a911c360
MS
37}
38
3ad13771 39if { ! [ runto_main ] } then {
b60f0898
JB
40 untested gcore.exp
41 return -1
a911c360
MS
42}
43
44proc capture_command_output { command prefix } {
45 global gdb_prompt
46 global expect_out
47
48 set output_string ""
db25f29d 49 gdb_test_multiple "$command" "capture_command_output for $command" {
a911c360
MS
50 -re "${command}\[\r\n\]+${prefix}(.*)\[\r\n\]+$gdb_prompt $" {
51 set output_string $expect_out(1,string)
52 }
a911c360
MS
53 }
54 return $output_string
55}
56
57gdb_test "break terminal_func" "Breakpoint .* at .*${srcfile}, line .*" \
58 "set breakpoint at terminal_func"
59
fda6ae12 60gdb_test "continue" "Breakpoint .* terminal_func.*" \
a911c360
MS
61 "continue to terminal_func"
62
63set print_prefix ".\[0123456789\]* = "
64
65set pre_corefile_backtrace [capture_command_output "backtrace" ""]
66set pre_corefile_regs [capture_command_output "info registers" ""]
67set pre_corefile_allregs [capture_command_output "info all-reg" ""]
1f031429 68set pre_corefile_sysregs [capture_command_output "info reg system" ""]
a911c360
MS
69set pre_corefile_static_array \
70 [capture_command_output "print static_array" "$print_prefix"]
71set pre_corefile_uninit_array \
72 [capture_command_output "print un_initialized_array" "$print_prefix"]
73set pre_corefile_heap_string \
74 [capture_command_output "print heap_string" "$print_prefix"]
75set pre_corefile_local_array \
76 [capture_command_output "print array_func::local_array" "$print_prefix"]
77set pre_corefile_extern_array \
78 [capture_command_output "print extern_array" "$print_prefix"]
79
289f9037 80set corefile [standard_output_file gcore.test]
fac51dd9 81set core_supported [gdb_gcore_cmd "$corefile" "save a corefile"]
7d605576
DJ
82if {!$core_supported} {
83 return -1
84}
a911c360
MS
85
86# Now restart gdb and load the corefile.
87gdb_exit
88gdb_start
89gdb_reinitialize_dir $srcdir/$subdir
90gdb_load ${binfile}
91
fac51dd9
DE
92set core_loaded [gdb_core_cmd "$corefile" "re-load generated corefile"]
93if { $core_loaded == -1 } {
94 # No use proceeding from here.
95 return
a911c360
MS
96}
97
5fa290c1
DE
98gdb_test_sequence "where" "where in corefile" {
99 "\[\r\n\]+#0 .* terminal_func \\(\\) at "
100 "\[\r\n\]+#1 .* array_func \\(\\) at "
101 "\[\r\n\]+#2 .* factorial_func \\(value=1\\) at "
102 "\[\r\n\]+#3 .* factorial_func \\(value=2\\) at "
103 "\[\r\n\]+#4 .* factorial_func \\(value=3\\) at "
104 "\[\r\n\]+#5 .* factorial_func \\(value=4\\) at "
105 "\[\r\n\]+#6 .* factorial_func \\(value=5\\) at "
106 "\[\r\n\]+#7 .* factorial_func \\(value=6\\) at "
107 "\[\r\n\]+#8 .* main \\(.*\\) at "
a911c360
MS
108}
109
110set post_corefile_regs [capture_command_output "info registers" ""]
111if ![string compare $pre_corefile_regs $post_corefile_regs] then {
112 pass "corefile restored general registers"
113} else {
b082f199 114 fail "corefile restored general registers"
a911c360
MS
115}
116
117set post_corefile_allregs [capture_command_output "info all-reg" ""]
118if ![string compare $pre_corefile_allregs $post_corefile_allregs] then {
119 pass "corefile restored all registers"
120} else {
b082f199 121 fail "corefile restored all registers"
a911c360
MS
122}
123
1f031429
PA
124set post_corefile_sysregs [capture_command_output "info reg system" ""]
125if ![string compare $pre_corefile_sysregs $post_corefile_sysregs] then {
126 pass "corefile restored system registers"
127} else {
128 fail "corefile restored system registers"
129}
130
a911c360
MS
131set post_corefile_extern_array \
132 [capture_command_output "print extern_array" "$print_prefix"]
a911c360
MS
133if ![string compare $pre_corefile_extern_array $post_corefile_extern_array] {
134 pass "corefile restored extern array"
135} else {
136 fail "corefile restored extern array"
137}
138
139set post_corefile_static_array \
140 [capture_command_output "print static_array" "$print_prefix"]
a911c360
MS
141if ![string compare $pre_corefile_static_array $post_corefile_static_array] {
142 pass "corefile restored static array"
143} else {
144 fail "corefile restored static array"
145}
146
147set post_corefile_uninit_array \
148 [capture_command_output "print un_initialized_array" "$print_prefix"]
a911c360
MS
149if ![string compare $pre_corefile_uninit_array $post_corefile_uninit_array] {
150 pass "corefile restored un-initialized array"
151} else {
152 fail "corefile restored un-initialized array"
153}
154
155set post_corefile_heap_string \
156 [capture_command_output "print heap_string" "$print_prefix"]
a911c360
MS
157if ![string compare $pre_corefile_heap_string $post_corefile_heap_string] {
158 pass "corefile restored heap array"
159} else {
160 fail "corefile restored heap array"
161}
162
163set post_corefile_local_array \
164 [capture_command_output "print array_func::local_array" "$print_prefix"]
a911c360
MS
165if ![string compare $pre_corefile_local_array $post_corefile_local_array] {
166 pass "corefile restored stack array"
167} else {
168 fail "corefile restored stack array"
169}
170
171set post_corefile_backtrace [capture_command_output "backtrace" ""]
172if ![string compare $pre_corefile_backtrace $post_corefile_backtrace] {
173 pass "corefile restored backtrace"
174} else {
175 fail "corefile restored backtrace"
176}
This page took 1.270379 seconds and 4 git commands to generate.