change delegation for to_read_description
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / call-ar-st.exp
CommitLineData
ecd75fc8 1# Copyright 1998-2014 Free Software Foundation, Inc.
c906108c
SS
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
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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#
c906108c 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/>.
c906108c 15
c906108c
SS
16# This file was written by Elena Zannoni (ezannoni@cygnus.com)
17
18
c906108c 19
f76495c8 20standard_testfile
c906108c 21
1960c400
MS
22# Test depends on printf, which the sparclet stub doesn't support.
23if { [istarget "sparclet-*-*"] } {
ae59b1da 24 return 0
1960c400 25}
c906108c 26
f76495c8
TT
27# Some targets can't call functions, so don't even bother with this
28# test.
29if [target_info exists gdb,cannot_call_functions] {
30 setup_xfail "*-*-*" 2416
31 fail "This target can not call functions"
32 continue
c906108c
SS
33}
34
c906108c
SS
35# Create and source the file that provides information about the compiler
36# used to compile the test case.
37
4c93b1db 38if [get_compiler_info] {
ae59b1da 39 return -1
c906108c
SS
40}
41
f76495c8
TT
42if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
43 untested $testfile.exp
44 return -1
c906108c
SS
45}
46
f76495c8 47
1b7c05e7
CV
48set oldtimeout $timeout
49set timeout [expr "$timeout + 60"]
50
ad3986f0
MS
51gdb_test_no_output "set print sevenbit-strings"
52gdb_test_no_output "set print address off"
53gdb_test_no_output "set width 0"
c906108c
SS
54
55
56if ![runto_main] then {
57 perror "couldn't run to breakpoint"
58 continue
59}
60
5a01311c
MK
61get_debug_format
62
085dd6e6
JM
63#go -until 1209
64gdb_test "tbreak 1209" \
18ac113b 65 "Temporary breakpoint \[0-9\]+.*file.*$srcfile, line 1209.*" \
085dd6e6 66 "tbreakpoint line 1209"
c906108c
SS
67
68gdb_test continue \
085dd6e6 69"Continuing\\..*main \\(\\) at.*$srcfile:1209.*" \
c906108c
SS
70"run until breakpoint set at a line"
71
72
73#call print_double_array(double_array)
13a5e3b8
MS
74if {![gdb_skip_float_test "print print_double_array(double_array)"] && \
75 ![gdb_skip_stdio_test "print print_double_array(double_array)"] } {
5fa290c1 76 gdb_test_sequence "print print_double_array(double_array)" "" {
085dd6e6
JM
77 "\[ \t\r\n\]+array_d :"
78 "\[ \t\r\n\]+========="
79 "\[ \t\r\n\]+0.000000"
241264c6 80 "\[ \t\r\n\]+23.456\[0-9\]* 46.913\[0-9\]* 70.370\[0-9\]* 93.826\[0-9\]* 117.283\[0-9\]* 140.740\[0-9\]* 164.196\[0-9\]* 187.653\[0-9\]"
1b7c05e7 81 "\[ \t\r\n\]+"
5fa290c1 82 }
9e086581 83}
c906108c
SS
84
85#call print_char_array(char_array)
7a292a7a 86
13a5e3b8 87if ![gdb_skip_stdio_test "print_char_array(char_array)"] {
5fa290c1 88 gdb_test_sequence "print print_char_array(char_array)" "" {
13a5e3b8
MS
89 "\[ \t\r\n\]+array_c :"
90 "\[ \t\r\n\]+========="
91 "\[ \t\r\n\]+\[ \t\r\n\]+Z"
92 "\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZ"
93 "\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZ"
94 "\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZa\[ \t\r\n\]+\[ \t\r\n\]+"
95 }
9ff5cbe9 96}
c906108c 97
085dd6e6
JM
98#go -until 1216
99gdb_test "tbreak 1216" \
18ac113b 100"Temporary breakpoint.*file.*$srcfile, line 1216.*" \
085dd6e6 101"tbreakpoint line 1216"
c906108c 102
13a5e3b8 103if ![gdb_skip_stdio_test "continue to 1216"] {
5fa290c1 104 gdb_test_sequence "continue" "continue to 1216" {
13a5e3b8
MS
105 "\[ \t\r\n\]+array_c :"
106 "\[ \t\r\n\]+========="
107 "\[ \t\r\n\]+\[ \t\r\n\]+Z"
108 "\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZ"
109 "\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZ"
110 "\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZa"
111 "\[ \t\r\n\]+main.*at.*:1216"
112 "\[ \t\r\n\]+1216.*print_double_array\\(double_array\\)"
113 }
114} else {
de7ff789 115 gdb_test "continue" ".*" ""
c906108c
SS
116}
117
118# I am disabling this test, because it takes too long. I verified by
119# hand that it works, feel free to check for yourself.
120#call print_all_arrays(integer_array, char_array, float_array, double_array)
121#send_gdb "print print_all_arrays(integer_array, char_array, float_array, double_array)\n"
122#gdb_expect {
123# -re ".*array_i :\[ \t\r\n\]+=========\[ \t\r\n\]+\[ \t\r\n\]+0\[ \t\r\n\]+-1 -2 -3 -4 -5 -6 -7 -8\[ \t\r\n\]+-9 -10 -11 -12 -13 -14 -15 -16\[ \t\r\n\]+-17 -18 -19 -20 -21 -22 -23 -24\[ \t\r\n\]+-25 -26 -27 -28 -29 -30 -31 -32\[ \t\r\n\]+-33 -34 -35 -36 -37 -38 -39 -40\[ \t\r\n\]+-41 -42 -43 -44 -45 -46 -47 -48\[ \t\r\n\]+-49\[ \t\r\n\]+\[ \t\r\n\]+array_c :\[ \t\r\n\]+=========\[ \t\r\n\]+\[ \t\r\n\]+Z\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZ\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZ\[ \t\r\n\]+aZaZaZaZaZaZaZaZaZa\[ \t\r\n\]+\[ \t\r\n\]+array_f :\[ \t\r\n\]+=========\[ \t\r\n\]+\[ \t\r\n\]+0.000000\[ \t\r\n\]+0.142450 0.284900 0.427350 0.569801 0.712251 0.854701 0.997151 1.139601\[ \t\r\n\]+1.282051 1.424501 1.566952 1.709402 1.851852 1.994302\[ \t\r\n\]+\[ \t\r\n\]+array_d :\[ \t\r\n\]+=========\[ \t\r\n\]+\[ \t\r\n\]+0.000000\[ \t\r\n\]+23.456700 46.913400 70.370100 93.826800 117.283500 140.740200 164.196900 187.653600\[ \t\r\n\]+211.110300 234.567000 258.023700 281.480400 304.937100 328.393800 351.850500 375.307200\[ \t\r\n\]+398.763900 422.220600 445.677300 469.134000 492.590700 516.047400 539.504100 562.960800\[ \t\r\n\]+586.41750 609.874200 633.330900 656.787600 680.244300 703.701000 727.157700 750.614400\[ \t\r\n\]+774.071100 797.527800 820.984500 844.441200 867.897900 891.354600 914.811300 938.268000\[ \t\r\n\]+961.724700 985.181400 1008.638100 1032.094800 1055.551500 1079.008200 1102.464900 1125.921600\[ \t\r\n\]+1149.378300 1172.835000 1196.291700 1219.748400 1243.205100 1266.661800 1290.118500 1313.575200\[ \t\r\n\]+1337.031900 1360.488600 1383.945300 1407.402000 1430.858700 1454.315400 1477.772100 1501.228800\[ \t\r\n\]+1524.685500 1548.142200 1571.598900 1595.055600 1618.512300 1641.969000 1665.425700 1688.882400\[ \t\r\n\]+1712.339100 1735.795800 1759.252500 1782.709200 1806.165900 1829.622600 1853.079300 1876.536000\[ \t\r\n\]+1899.992700 1923.449400 1946.906100 1970.362800 1993.819500 2017.276200 2040.732900 2064.189600\[ \t\r\n\]+2087.646300 2111.103000 2134.559700 2158.016400 2181.473100 2204.929800 2228.386500 2251.843200\[ \t\r\n\]+2275.299900 2298.756600 2322.213300.*$gdb_prompt $" {
124# pass "print print_all_arrays(integer_array, char_array, float_array, double_array)"
125# }
126# -re ".*$gdb_prompt $" { fail "print print_all_arrays(integer_array, char_array, float_array, double_array)" }
127# timeout { fail "(timeout) print print_all_arrays(integer_array, char_array, float_array, double_array)" }
128# }
129
130#set timeout $oldtimeout
085dd6e6
JM
131#go -until 1220
132gdb_test "tbreak 1220" \
18ac113b 133 "Temporary breakpoint.* file .*$srcfile, line 1220.*" \
13a5e3b8
MS
134 "tbreakpoint line 1220"
135
c477543d
SC
136if {![gdb_skip_float_test "continuing to breakpoint 1220"] && \
137 ![gdb_skip_stdio_test "continuing to breakpoint 1220"] } {
5fa290c1 138 gdb_test_sequence "continue" "continuing to breakpoint 1220" {
13a5e3b8
MS
139 "Continuing\\."
140 "\[ \t\r\n\]+array_d :"
141 "\[ \t\r\n\]+========="
142 "\[ \t\r\n\]+0.000000"
241264c6 143 "\[ \t\r\n\]+23.456\[0-9\]* 46.913\[0-9\]* 70.370\[0-9\]* 93.826\[0-9\]* 117.283\[0-9\]* 140.740\[0-9\]* 164.196\[0-9\]* 187.653\[0-9\]*"
1b7c05e7 144 "\[ \t\r\n\]+"
5fa290c1
DE
145 "array_f :"
146 "student id :\[\t \]+.*YELLOW"
147 "array_i :"
148 "main \\(\\) at .*call-ar-st.c:1220\[ \t\r\n\]+.*print_all_arrays\\(integer_array, char_array, float_array, double_array\\)."
13a5e3b8
MS
149 }
150} else {
de7ff789 151 gdb_test "continue" ".*" ""
085dd6e6 152}
c906108c
SS
153
154#step
ad3986f0 155gdb_test "step" \
9cb709b6 156 "print_all_arrays \\(array_i=<integer_array.*>, array_c=<char_array.*> .ZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZaZa., array_f=<float_array.*>, array_d=<double_array.*>\\) at .*call-ar-st.c:306\[ \t\r\n\]+306.*print_int_array\\(array_i\\);.*" \
ad3986f0 157 "step inside print_all_arrays"
c906108c
SS
158
159#step -over
13a5e3b8 160if ![gdb_skip_stdio_test "next over print_int_array in print_all_arrays"] {
ad3986f0
MS
161 gdb_test "next" \
162 "array_i :.*307.*print_char_array.*" \
163 "next over print_int_array in print-all_arrays"
13a5e3b8 164} else {
de7ff789 165 gdb_test "next" ".*" ""
13a5e3b8 166}
c906108c
SS
167
168#call print_double_array(array_d)
13a5e3b8
MS
169if {![gdb_skip_float_test "print print_double_array(array_d)"] && \
170 ![gdb_skip_stdio_test "print print_double_array(array_d)"] } {
5fa290c1 171 gdb_test_sequence "print print_double_array(array_d)" "" {
13a5e3b8
MS
172 "array_d :"
173 "\[ \t\r\n\]+========="
174 "\[ \t\r\n\]+\[ \t\r\n\]+0.000000"
241264c6 175 "\[ \t\r\n\]+23.456\[0-9\]* 46.913\[0-9\]* 70.370\[0-9\]* 93.826\[0-9\]* 117.283\[0-9\]* 140.740\[0-9\]* 164.196\[0-9\]* 187.653\[0-9\]*"
1b7c05e7 176 "\[ \t\r\n\]+"
13a5e3b8 177 }
9e086581 178}
c906108c 179
085dd6e6
JM
180#go -until 1236
181gdb_test "tbreak 1236" \
18ac113b 182"Temporary breakpoint.* file .*$srcfile, line 1236.*" \
085dd6e6 183"tbreakpoint line 1236"
c906108c 184
c477543d
SC
185if {![gdb_skip_float_test "continuing to 1236"] && \
186 ![gdb_skip_stdio_test "continuing to 1236"] } {
5fa290c1 187 gdb_test_sequence "continue" "continuing to 1236" {
13a5e3b8 188 "Continuing\\..*array_c"
5fa290c1 189 "array_f"
13a5e3b8
MS
190 "\[ \t\r\n\]+array_d :"
191 "\[ \t\r\n\]+========="
192 "\[ \t\r\n\]+0.000000"
241264c6 193 "\[ \t\r\n\]+23.456\[0-9\]* 46.913\[0-9\]* 70.370\[0-9\]* 93.826\[0-9\]* 117.283\[0-9\]* 140.740\[0-9\]* 164.196\[0-9\]* 187.653\[0-9\]*"
1b7c05e7 194 "\[ \t\r\n\]+.*HELLO WORLD.*main \\(\\) at .*call-ar-st.c:1236.*printf\\(.BYE BYE FOR NOW.n.\\)."
13a5e3b8
MS
195 }
196} else {
de7ff789 197 gdb_test "continue" ".*" ""
085dd6e6 198}
c906108c
SS
199
200
201#call sum_array_print(10, *list1, *list2, *list3, *list4)
b83266a0 202
13a5e3b8 203if ![gdb_skip_stdio_test "print sum_array_print(...)"] {
ad3986f0
MS
204 gdb_test "print sum_array_print(10, *list1, *list2, *list3, *list4)" \
205 ".*Sum of 4 arrays, by element \\(add in seed as well\\):\[ \t\r\n\]+Seed: 10\[ \t\r\n\]+Element Index . Sum\[ \t\r\n\]+-------------------------\[ \t\r\n\]+.*\[ \t\]+0\[ \t\]+52\[ \t\r\n\]+1\[ \t\]+60\[ \t\r\n\]+2\[ \t\]+68\[ \t\r\n\]+3\[ \t\]+76\[ \t\r\n\]+4\[ \t\]+84\[ \t\r\n\]+5\[ \t\]+92\[ \t\r\n\]+6\[ \t\]+100\[ \t\r\n\]+7\[ \t\]+108\[ \t\r\n\]+8\[ \t\]+116\[ \t\r\n\]+9\[ \t\]+124\[ \t\r\n\]+.*" \
206 "print sum_array_print(10, *list1, *list2, *list3, *list4)"
13a5e3b8 207}
c906108c 208
b83266a0 209#step over
13a5e3b8 210if ![gdb_skip_stdio_test "next to 1237"] {
ad3986f0
MS
211 gdb_test "next" \
212 "BYE BYE FOR NOW.*1237.*printf\\(.VERY GREEN GRASS.n.\\);.*" \
213 "next to 1237"
13a5e3b8 214} else {
de7ff789 215 gdb_test "next" ".*" ""
b83266a0 216}
c906108c
SS
217
218#call print_array_rep(\*list1, \*list2, \*list3)
219
13a5e3b8 220if ![gdb_skip_stdio_test "print print_array_rep(...)"] {
ad3986f0
MS
221 gdb_test "print print_array_rep(\*list1, \*list2, \*list3)" \
222 "Contents of linked list3:.*" \
223 "print print_array_rep(*list1, *list2, *list3)"
13a5e3b8 224}
c906108c 225
085dd6e6
JM
226#go -until 1241
227gdb_test "tbreak 1241" \
18ac113b 228 "Temporary breakpoint..* file .*$srcfile, line 1241.*" \
085dd6e6 229 "tbreakpoint line 1241"
c906108c 230
ad3986f0
MS
231gdb_test "continue" \
232 "main \\(\\) at .*call-ar-st.c:1241\r\n1241\[\t \]+sum_array_print\\(10, \\*list1, \\*list2, \\*list3, \\*list4\\);.*" \
233 "continue to 1241"
c906108c
SS
234
235
236# Run into sum_array_print, and verify that the arguments were passed
237# accurately.
238#
239# Note that we shouldn't use a `step' here to get into
240# sum_array_print; GCC may emit calls to memcpy to put the arguments
241# in the right place, and a step may end up in memcpy instead. This
242# may itself be a bug, but it's not the one we're trying to catch
243# here. I've added something to step-test.exp for this.
244gdb_test "break sum_array_print" \
245 ".*Breakpoint ${decimal}: file .*call-ar-st.c, line.*" \
246 "set breakpoint in sum_array_print"
27d3a1a2 247gdb_test_no_output "set print frame-arguments all"
c906108c 248gdb_test "continue" \
085dd6e6 249 ".*Breakpoint ${decimal}, sum_array_print \\(seed=10, linked_list1=.next_index = .1, 2, 3, 4, 5, 6, 7, 8, 9, 10., values = .4, 6, 8, 10, 12, 14, 16, 18, 20, 22., head = 0., linked_list2=.next_index = .1, 2, 3, 4, 5, 6, 7, 8, 9, 10., values = .8, 10, 12, 14, 16, 18, 20, 22, 24, 26., head = 0., linked_list3=.next_index = .1, 2, 3, 4, 5, 6, 7, 8, 9, 10., values = .10, 12, 14, 16, 18, 20, 22, 24, 26, 28., head = 0., linked_list4=.next_index = .1, 2, 3, 4, 5, 6, 7, 8, 9, 10., values = .20, 22, 24, 26, 28, 30, 32, 34, 36, 38., head = 0.\\) at .*call-ar-st.c:1105\[ \t\n\r\]+1105.*printf\\(.Sum of 4 arrays, by element \\(add in seed as well\\).*\\);.*" \
c906108c
SS
250 "check args of sum_array_print"
251
252#call print_array_rep(linked_list1, linked_list2, linked_list3)
253# this calls works from gdb without gdb_expect. But it does seem to hang
254#from within gdb_expect.
255#I comment this out
256#send_gdb "print print_array_rep(linked_list1, linked_list2, linked_list3)\n"
257#gdb_expect {
258# -re ".*Contents of linked list1:\[ \t\n\r\]+Element Value . Index of Next Element\[ \t\n\r\]+-------------------------------------\[ \t\n\r\]+.*\[ \t\n\r\]+.*4.*1\[ \t\n\r\]+.*6.*2\[ \t\n\r\]+.*8.*3\[ \t\n\r\]+.*10.*4\[ \t\n\r\]+.*12.*5\[ \t\n\r\]+.*14.*6\[ \t\n\r\]+.*16.*7\[ \t\n\r\]+.*18.*8\[ \t\n\r\]+.*20.*9\[ \t\n\r\]+.*22.*10\[ \t\n\r\]+Contents of linked list2:\[ \t\n\r\]+Element Value | Index of Next Element\[ \t\n\r\]+-------------------------------------\[ \t\n\r\]+.*\[ \t\n\r\]+.*8.*1\[ \t\n\r\]+.*10.*2\[ \t\n\r\]+.*12.*3\[ \t\n\r\]+.*14.*4\[ \t\n\r\]+.*16.*5\[ \t\n\r\]+.*18.*6\[ \t\n\r\]+.*20.*7\[ \t\n\r\]+.*22.*8\[ \t\n\r\]+.*24.*9\[ \t\n\r\]+.*26.*10\[ \t\n\r\]+Contents of linked list3:\[ \t\n\r\]+Element Value | Index of Next Element\[ \t\n\r\]+-------------------------------------\[ \t\n\r\]+.*\[ \t\n\r\]+.*10.*1\[ \t\n\r\]+.*12.*2\[ \t\n\r\]+.*14.*3\[ \t\n\r\]+.*16.*4\[ \t\n\r\]+.*18.*5\[ \t\n\r\]+.*20.*6\[ \t\n\r\]+.*22.*7\[ \t\n\r\]+.*24.*8\[ \t\n\r\]+.*26.*9\[ \t\n\r\]+.*28.*10\[ \t\n\r\]+.*$gdb_prompt $" {
259# pass "print print_array_rep(linked_list1, linked_list2, linked_list3)"
260# }
261# -re ".*$gdb_prompt $" { fail "print print_array_rep(linked_list1, linked_list2, linked_list3)" }
262# timeout { fail "(timeout) print print_array_rep(linked_list1, linked_list2, linked_list3)" }
263#}
264
265
085dd6e6
JM
266#go -until 1281
267gdb_test "tbreak 1281" \
18ac113b 268 "Temporary breakpoint.* file .*call-ar-st.c, line 1281.*" \
085dd6e6 269 "tbreakpoint line 1281"
c906108c 270
13a5e3b8 271if ![gdb_skip_stdio_test "continuing to 1281"] {
ad3986f0
MS
272 gdb_test "continue" \
273 "Continuing\\..*Sum of 4 arrays.*Contents of linked list1.*Contents of two_floats_t.*main \\(\\) at .*call-ar-st.c:1281.*c = 0.*" \
274 "continue to 1281"
13a5e3b8 275} else {
de7ff789 276 gdb_test "continue" ".*" ""
c906108c
SS
277}
278
13a5e3b8
MS
279#call print_small_structs(*struct1, *struct2, *struct3, *struct4,
280# *flags, *flags_combo, *three_char, *five_char,
281# *int_char_combo, *d1, *d2, *d3, *f1, *f2, *f3)
282
283if {![gdb_skip_float_test "print print_small_structs(...)"] && \
284 ![gdb_skip_stdio_test "print print_small_structs(...)"] } {
5fa290c1 285 gdb_test_sequence "print print_small_structs(*struct1, *struct2, *struct3, *struct4, *flags, *flags_combo, *three_char, *five_char, *int_char_combo, *d1, *d2, *d3, *f1, *f2, *f3)" "print print_small_structs" {
9ff5cbe9
AC
286 "\[\t\r\n \]+alpha"
287 "\[\t\r\n \]+gamma"
288 "\[\t\r\n \]+epsilon"
289 "\[\t\r\n \]+alpha"
290 "\[\t\r\n \]+gamma"
291 "\[\t\r\n \]+epsilon"
292 "\[\t\r\n \]+ch1: y[ \t]*ch2: n"
293 "\[\t\r\n \]+Contents of three_char_t:"
294 "\[\t\r\n \]+a[ \t]*b[ \t]*c"
295 "\[\t\r\n \]+Contents of five_char_t:"
296 "\[\t\r\n \]+l[ \t]*m[ \t]*n[ \t]*o[ \t]*p"
297 "\[\t\r\n \]+Contents of int_char_combo_t:"
298 "\[\t\r\n \]+123[ \t]*z"
299 "\[\t\r\n \]+Sum of the 4 struct values and seed :"
300 "\[\t\r\n \]+52"
301 "\[\t\r\n \]+Contents of struct1:"
302 "\[\t\r\n \]+6[ \t]*0"
303 "\[\t\r\n \]+Contents of struct2:"
304 "\[\t\r\n \]+10[ \t]*0"
305 "\[\t\r\n \]+Contents of struct3:"
306 "\[\t\r\n \]+12[ \t]*0"
307 "\[\t\r\n \]+Contents of one_double_t:"
308 "\[\t\r\n \]+10.500000"
309 "\[\t\r\n \]+Contents of one_double_t:"
310 "\[\t\r\n \]+-3.375000"
311 "\[\t\r\n \]+Contents of one_double_t:"
312 "\[\t\r\n \]+675.093750"
313 "\[\t\r\n \]+Contents of two_floats_t:"
314 "\[\t\r\n \]+45.234001[ \t]*43.599998"
315 "\[\t\r\n \]+Contents of two_floats_t:"
316 "\[\t\r\n \]+78.010002[ \t]*122.099998"
317 "\[\t\r\n \]+Contents of two_floats_t:"
318 "\[\t\r\n \]+-1232.344971[ \t]*-199.210007"
9e086581 319 }
9e086581 320}
c906108c
SS
321
322#call compute_with_small_structs(20)
ad3986f0
MS
323gdb_test "print compute_with_small_structs(20)" \
324 "\[0-9\]+ = void" \
325 "print compute_with_small_structs(20)"
c906108c
SS
326
327
13a5e3b8
MS
328#call print_ten_doubles(123.456, 123.456, -0.12, -1.23, 343434.8, 89.098,
329# 3.14, -5678.12345, -0.11111111, 216.97065)
330
331if {![gdb_skip_float_test "print print_ten_doubles(...)"] && \
332 ![gdb_skip_stdio_test "print print_ten_doubles(...)"]} {
5fa290c1 333 gdb_test_sequence "print print_ten_doubles(123.456, 123.456, -0.12, -1.23, 343434.8, 89.098, 3.14, -5678.12345, -0.11111111, 216.97065)" "print print_ten_doubles" {
241264c6
MS
334 "\[\t\r\n \]+Two Doubles : 123.45\[0-9\]*.*123.45\[0-9\]*"
335 "\[\t\r\n \]+Two Doubles : -0.1200\[0-9\]*.*-1.2300\[0-9\]*"
336 "\[\t\r\n \]+Two Doubles : 343434.\[0-9\]*.*89.09\[0-9\]*"
337 "\[\t\r\n \]+Two Doubles : 3.1400\[0-9\]*.*-5678.123\[0-9\]*"
338 "\[\t\r\n \]+Two Doubles : -0.1111\[0-9\]*.*216.97\[0-9\]*"
9e086581 339 }
9e086581 340}
c906108c 341
085dd6e6
JM
342#go -until 1286
343gdb_test "tbreak 1286" \
18ac113b 344 "Temporary breakpoint .* file .*call-ar-st.c, line 1286.*" \
085dd6e6
JM
345 "tbreakpoint line 1286"
346
347gdb_test continue "Continuing\\..*main \\(.*\\) at.*call-ar-st.c:1286\[\t\r\n \]+1286.*print_long_arg_list \\( a, b, c, d, e, f, .struct1, .struct2, .struct3, .struct4,.*" "continue to 1286"
348
349if { [istarget "hppa*-*-hpux*"] } {
350 #
351 # NOTE:(FIXME)
352 # the aCC demangler cannot demangle the name of a function with >10 args.
353 # so I added a .* after the name of the function, to match the
354 # incredibly long mangled name
355 # (getting aCC's libdemangle.a bundled w/ the system?)
356 # DTS CLLbs16994 coulter 990114
357 #
358 # FIXME: use step for hppa* testing for now
359 # guo 990621
360 #
ad3986f0
MS
361 gdb_test "step" \
362 "print_long_arg_list.*\\(a=22.25, b=33.375, c=0, d=-25, e=100, f=2345, struct1=\{value = 6, head = 0\}, struct2=\{value = 10, head = 0\}, struct3=\{value = 12, head = 0\}, struct4=\{value = 14, head = 0\}, flags=\{alpha = 1, beta = 0, gamma = 1, delta = 0, epsilon = 1, omega = 0\}, flags_combo=\{alpha = 1, beta = 0, ch1 = 121 \'y\', gamma = 1, delta = 0, ch2 = 110 \'n\', epsilon = 1, omega = 0\}, three_char=\{ch1 = 97 \'a\', ch2 = 98 \'b\', ch3 = 99 \'c\'\}, five_char=\{ch1 = 108 \'l\', ch2 = 109 \'m\', ch3 = 110 \'n\', ch4 = 111 \'o\', ch5 = 112 \'p\'\}, int_char_combo=\{int1 = 123, ch1 = 122 \'z\'\}, d1=\{double1 = 10.5\}, d2=\{double1 = -3.375\}, d3=\{double1 = 675.09375\}, f1=\{float1 = 45.2340012, float2 = 43.5999985\}, f2=\{float1 = 78.0100021, float2 = 122.099998\}, f3=\{float1 = -1232.34497, float2 = -199.210007\}\\) at .*${srcfile}:992\[\r\n\]+992\[ \t\]+printf\\(\"double :.*\", a\\);" \
363 "step into print_long_arg_list"
9e086581 364} else {
085dd6e6 365
53a5351d
JM
366 # We can't just assume that a "step" will get us into
367 # print_long_arg_list here,either.
085dd6e6 368 gdb_test "tbreak print_long_arg_list" \
18ac113b 369 "Temporary breakpoint .* file .*call-ar-st.c, line .*" \
085dd6e6 370 "tbreak in print_long_arg_list after stepping into memcpy"
53a5351d
JM
371 # The short match case below handles cases where a buffer
372 # overflows or something, and expect can't deal with the full
373 # line. Perhaps a more elegant solution exists... -sts 1999-08-17
13a5e3b8 374 if {![gdb_skip_float_test "step into print_long_arg_list"]} {
ad3986f0
MS
375 gdb_test_multiple "continue" "step into print_long_arg_list" {
376 -re ".*print_long_arg_list \\(a=22.25, b=33.375, c=0, d=-25, e=100, f=2345, struct1=\{value = 6, head = 0\}, struct2=\{value = 10, head = 0\}, struct3=\{value = 12, head = 0\}, struct4=\{value = 14, head = 0\}, flags=\{alpha = 1, beta = 0, gamma = 1, delta = 0, epsilon = 1, omega = 0\}, flags_combo=\{alpha = 1, beta = 0, ch1 = 121 \'y\', gamma = 1, delta = 0, ch2 = 110 \'n\', epsilon = 1, omega = 0\}, three_char=\{ch1 = 97 \'a\', ch2 = 98 \'b\', ch3 = 99 \'c\'\}, five_char=\{ch1 = 108 \'l\', ch2 = 109 \'m\', ch3 = 110 \'n\', ch4 = 111 \'o\', ch5 = 112 \'p\'\}, int_char_combo=\{int1 = 123, ch1 = 122 \'z\'\}, d1=\{double1 = 10.5\}, d2=\{double1 = -3.375\}, d3=\{double1 = 675.09375\}, f1=\{float1 = 45.2340012, float2 = 43.5999985\}, f2=\{float1 = 78.0100021, float2 = 122.099998\}, f3=\{float1 = -1232.34497, float2 = -199.210007\}\\) at .*${srcfile}:992\[\r\n\]+992\[ \t\]+printf\\(\"double :.*\", a\\);.*$gdb_prompt $" {
377 pass "step into print_long_arg_list"
378 }
379 -re ".*print_long_arg_list.*\\(a=22.25, b=33.375, c=0, d=-25, e=100, f=2345, struct1=\{value = 6, head = 0\}, struct2=\{value = 10, head = 0\}, struct3=\{value = 12, head = 0\}, struct4=\{value = 14, head = 0\}, flags=\{alpha = 1, beta = 0, gamma = 1, delta = 0, epsilon = 1, omega = 0\}, flags_combo=\{alpha = 1, beta = 0, ch1 = 121 \'y\', gamma = 1, delta = 0, ch2 = 110 \'n\', epsilon = 1, omega = 0\}, three_char=\{ch1 = 97 \'a\', ch2 = 98 \'b\', ch3 = 99 \'c\'\}.*\\) at .*${srcfile}:992\[\r\n\]+992\[ \t\]+printf\\(\"double :.*\", a\\);.*$gdb_prompt $" {
380 pass "step into print_long_arg_list (short match)"
381 }
085dd6e6
JM
382 }
383 } else {
53a5351d 384 # If skipping float tests, don't expect anything in arg list.
ad3986f0
MS
385 gdb_test "continue" \
386 "print_long_arg_list \\(.*\\).*" \
387 "step into print_long_arg_list"
085dd6e6 388 }
9e086581 389}
c906108c 390
53a5351d
JM
391set ws "\[\n\r\t \]+"
392
13a5e3b8
MS
393#call print_small_structs(struct1, struct2, struct3, struct4, flags,
394# flags_combo, three_char, five_char, int_char_combo,
395# d1, d2, d3, f1, f2, f3)
396
397if {![gdb_skip_float_test "print_small_structs from print_long_arg_list"] && \
398 ![gdb_skip_stdio_test "print_small_structs from print_long_arg_list"] } {
5a01311c
MK
399
400 # On 32-bit SPARC, some of the args are passed by ref, others by
401 # value, and GDB gets confused and says "Invalid cast" because it
402 # thinks it has to cast the structure into a pointer to structure.
403 if { [test_debug_format "stabs"] } then {
404 setup_kfail "gdb/1539" "sparc-*-*"
405 }
406
5fa290c1 407 gdb_test_sequence "print print_small_structs(struct1, struct2, struct3, struct4, flags, flags_combo, three_char, five_char, int_char_combo, d1, d2, d3, f1, f2, f3)" "print print_small_structs from print_long_arg_list" {
49a2cef8
AC
408 "\[\t\r\n \]+alpha"
409 "\[\t\r\n \]+gamma"
410 "\[\t\r\n \]+epsilon"
411 "\[\t\r\n \]+alpha"
412 "\[\t\r\n \]+gamma"
413 "\[\t\r\n \]+epsilon"
414 "\[\t\r\n \]+ch1: y[ \t]*ch2: n"
415 "\[\t\r\n \]+Contents of three_char_t:"
416 "\[\t\r\n \]+a\[ \t\]*b\[ \t\]*c"
417 "\[\t\r\n \]+Contents of five_char_t:"
418 "\[\t\r\n \]+l\[ \t\]*m\[ \t\]*n\[ \t\]*o\[ \t\]*p"
419 "\[\t\r\n \]+Contents of int_char_combo_t:"
420 "\[\t\r\n \]+123\[ \t\]*z"
421 "\[\t\r\n \]+Sum of the 4 struct values and seed :"
422 "\[\t\r\n \]+52"
423 "\[\t\r\n \]+Contents of struct1:"
424 "\[\t\r\n \]+6\[ \t\]*0"
425 "\[\t\r\n \]+Contents of struct2:"
426 "\[\t\r\n \]+10\[ \t\]*0"
427 "\[\t\r\n \]+Contents of struct3:"
428 "\[\t\r\n \]+12\[ \t\]*0"
429 "\[\t\r\n \]+Contents of one_double_t:"
430 "\[\t\r\n \]+10.500000"
431 "\[\t\r\n \]+Contents of one_double_t:"
432 "\[\t\r\n \]+-3.375000"
433 "\[\t\r\n \]+Contents of one_double_t:"
434 "\[\t\r\n \]+675.093750"
435 "\[\t\r\n \]+Contents of two_floats_t:"
436 "\[\t\r\n \]+45.234001\[ \t\]*43.599998"
437 "\[\t\r\n \]+Contents of two_floats_t:"
438 "\[\t\r\n \]+78.010002\[ \t\]*122.099998"
439 "\[\t\r\n \]+Contents of two_floats_t:"
440 "\[\t\r\n \]+-1232.344971\[ \t\]*-199.210007"
9e086581 441 }
9e086581 442}
c906108c
SS
443
444
085dd6e6
JM
445#go -until 1300
446gdb_test "tbreak 1300" \
18ac113b 447 "Temporary breakpoint.* file .*call-ar-st.c, line 1300.*" \
085dd6e6
JM
448 "tbreakpoint line 1300"
449
13a5e3b8
MS
450if ![gdb_skip_stdio_test "continuing to 1300"] {
451 gdb_test "continue" "Continuing\\..*Contents of two_floats_t:.*main \\(\\) at.*call-ar-st.c:1300.*1300.*init_bit_flags_combo\\(flags_combo, \\(unsigned\\)1, \\(unsigned\\)0, .y.,.*" \
452 "continue to 1300"
453} else {
de7ff789 454 gdb_test "continue" ".*" ""
13a5e3b8 455}
085dd6e6 456
c906108c 457#step
ad3986f0
MS
458gdb_test "step" \
459 "init_bit_flags_combo \\(bit_flags_combo=, a=1, b=0, ch1=121 .y., g=1, d=0, ch2=110 .n., e=1, o=0\\) at .*call-ar-st.c:416\[ \t\n\r\]+416.*bit_flags_combo->alpha = a;" \
460 "step into init_bit_flags_combo"
c906108c
SS
461
462#call print_bit_flags_combo(*bit_flags_combo)
13a5e3b8 463if ![gdb_skip_stdio_test "continuing to 1300"] {
ad3986f0
MS
464 gdb_test "print print_bit_flags_combo(*bit_flags_combo)" \
465 "alpha.*gamma.*epsilon.*ch1: y.*ch2: n.*" \
466 "print print_bit_flags_combo from init_bit_flags_combo"
13a5e3b8 467}
c906108c
SS
468
469
085dd6e6
JM
470#go -until 1305
471gdb_test "tbreak 1305" \
18ac113b 472 "Temporary breakpoint.* file .*call-ar-st.c, line 1305.*" \
085dd6e6 473 "tbreakpoint line 1305"
c906108c 474
085dd6e6
JM
475gdb_test continue "Continuing\\..*main \\(\\) at .*call-ar-st.c:1305\[\r\n\t \]+1305.*init_int_char_combo\\(int_char_combo, 13, .!.\\);" \
476"continue to 1305"
c906108c
SS
477
478#call print_long_arg_list(a, b, c, d, e, f, *struct1, *struct2, *struct3, *struct4, *flags, *flags_combo, *three_char, *five_char, *int_char_combo, *d1, *d2, *d3, *f1, *f2, *f3)
a0b3c4fd
JM
479
480# FIXME:
481# HP aCC demangler currently does not handle hp aCC functions with >10 args
482# DTS CLLbs16994 coulter 990114
483
484if {$hp_aCC_compiler} {setup_xfail "hppa*-*-*" CLLbs16994}
485
13a5e3b8
MS
486if {![gdb_skip_float_test "print print_long_arg_list"] && \
487 ![gdb_skip_stdio_test "print print_long_arg_list"] } {
5fa290c1 488 gdb_test_sequence "print print_long_arg_list(a, b, c, d, e, f, *struct1, *struct2, *struct3, *struct4, *flags, *flags_combo, *three_char, *five_char, *int_char_combo, *d1, *d2, *d3, *f1, *f2, *f3)" "print print_long_arg_list" {
9ff5cbe9
AC
489 "\[ \n\r\t\]+double : 22.250000"
490 "\[ \n\r\t\]+double : 33.375000"
491 "\[ \n\r\t\]+int : 0"
492 "\[ \n\r\t\]+int : -25"
493 "\[ \n\r\t\]+int : 100"
494 "\[ \n\r\t\]+int : 2345"
495 "\[ \n\r\t\]+alpha"
496 "\[ \n\r\t\]+gamma"
497 "\[ \n\r\t\]+epsilon"
498 "\[ \n\r\t\]+ch1: y\[ \t\]+ch2: n"
499 "\[ \n\r\t\]+Contents of three_char_t:"
500 "\[ \n\r\t\]+x\[ \t\]+y\[ \t\]+z"
501 "\[ \n\r\t\]+Contents of five_char_t:"
502 "\[ \n\r\t\]+h\[ \t\]+e\[ \t\]+l\[ \t\]+l\[ \t\]+o"
503 "\[ \n\r\t\]+Contents of int_char_combo_t:"
504 "\[ \n\r\t\]+123\[ \t\]+z"
505 "\[ \n\r\t\]+Sum of the 4 struct values and seed :"
506 "\[ \n\r\t\]+52"
507 "\[ \n\r\t\]+Contents of struct1:"
508 "\[ \n\r\t\]+6\[ \t\]+0"
509 "\[ \n\r\t\]+Contents of struct2:"
510 "\[ \n\r\t\]+10\[ \t\]+0"
511 "\[ \n\r\t\]+Contents of struct3:"
512 "\[ \n\r\t\]+12\[ \t\]+0"
513 "\[ \n\r\t\]+Contents of one_double_t:"
514 "\[ \n\r\t\]+1.111110"
515 "\[ \n\r\t\]+Contents of one_double_t:"
516 "\[ \n\r\t\]+-345.340000"
517 "\[ \n\r\t\]+Contents of one_double_t:"
518 "\[ \n\r\t\]+546464.200000"
519 "\[ \n\r\t\]+Contents of two_floats_t:"
520 "\[ \n\r\t\]+0.234000\[ \t\]+453.100006"
521 "\[ \n\r\t\]+Contents of two_floats_t:"
522 "\[ \n\r\t\]+78.345001\[ \t\]+23.090000"
523 "\[ \n\r\t\]+Contents of two_floats_t:"
524 "\[ \n\r\t\]+-2.345000\[ \t\]+1.000000"
9e086581 525 }
9e086581 526}
c906108c
SS
527
528
085dd6e6
JM
529#go -until 1311
530gdb_test "tbreak 1311" \
18ac113b 531 "Temporary breakpoint.* file .*call-ar-st.c, line 1311.*" \
085dd6e6 532 "tbreakpoint line 1311"
c906108c 533
085dd6e6
JM
534gdb_test continue "Continuing\\..*main \\(\\) at .*call-ar-st.c:1311\[ \t\n\r\]+1311.*compute_with_small_structs\\(35\\);" \
535"continue to 1311"
c906108c
SS
536
537
538#call sum_struct_print(10, *struct1, *struct2, *struct3, *struct4)
13a5e3b8 539if ![gdb_skip_stdio_test "print sum_struct_print(...)"] {
ad3986f0
MS
540 gdb_test "print sum_struct_print(10,*struct1,*struct2,*struct3,*struct4)" \
541 "Sum of the 4 struct values and seed :\[ \t\n\r\]+218.*" \
542 "print sum_struct_print(10, *struct1, *struct2, *struct3, *struct4)"
13a5e3b8 543}
c906108c
SS
544
545
546#call print_struct_rep(*struct1, *struct2, *struct3)
13a5e3b8 547if ![gdb_skip_stdio_test "print print_struct_rep(...)"] {
5fa290c1
DE
548 gdb_test_sequence "print print_struct_rep(*struct1, *struct2, *struct3)" \
549 "print print_struct_rep(*struct1, *struct2, *struct3)" {
13a5e3b8
MS
550 "\[ \t\n\r\]+Contents of struct1:"
551 "\[ \t\n\r\]+ 22 0"
552 "\[ \t\n\r\]+Contents of struct2:"
553 "\[ \t\n\r\]+ 42 0"
554 "\[ \t\n\r\]+Contents of struct3:"
555 "\[ \t\n\r\]+ 62 0"
556 }
9ff5cbe9 557}
c906108c 558
13a5e3b8 559if ![gdb_skip_stdio_test "print print_one_large_struct(...)"] {
ad3986f0
MS
560 gdb_test "print print_one_large_struct(*list1)" \
561 " 4 1.*" \
562 "print print_one_large_struct(*list1)"
13a5e3b8 563}
c906108c 564
1b7c05e7 565set timeout $oldtimeout
c906108c
SS
566return
567
This page took 2.996074 seconds and 4 git commands to generate.