PR gdb/14288
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / printcmds.exp
CommitLineData
0dcd613f
AC
1# This testcase is part of GDB, the GNU debugger.
2
0b302171
JB
3# Copyright 1992, 1994-1997, 1999-2000, 2002-2004, 2007-2012 Free
4# Software Foundation, Inc.
c906108c
SS
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
e22f8b7c 8# the Free Software Foundation; either version 3 of the License, or
c906108c 9# (at your option) any later version.
e22f8b7c 10#
c906108c
SS
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
e22f8b7c 15#
c906108c 16# You should have received a copy of the GNU General Public License
e22f8b7c 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
18
19# Please email any bugs, comments, and/or additions to this file to:
0dcd613f 20# bug-gdb@gnu.org
c906108c
SS
21
22# This file was written by Fred Fish. (fnf@cygnus.com)
23
c906108c
SS
24set testfile "printcmds"
25set srcfile ${testfile}.c
26set binfile ${objdir}/${subdir}/${testfile}
27if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
28 untested printcmds.exp
29 return -1
c906108c
SS
30}
31
4c93b1db 32get_compiler_info
293e2f9e 33
c906108c
SS
34proc test_integer_literals_accepted {} {
35 global gdb_prompt
36
37 # Test various decimal values.
38
39 gdb_test "p 123" " = 123"
40 gdb_test "p -123" " = -123"
41 gdb_test "p/d 123" " = 123"
42
43 # Test various octal values.
44
45 gdb_test "p 0123" " = 83"
46 gdb_test "p 00123" " = 83"
47 gdb_test "p -0123" " = -83"
48 gdb_test "p/o 0123" " = 0123"
49
50 # Test various hexadecimal values.
51
52 gdb_test "p 0x123" " = 291"
53 gdb_test "p -0x123" " = -291"
54 gdb_test "p 0x0123" " = 291"
55 gdb_test "p -0x0123" " = -291"
56 gdb_test "p 0xABCDEF" " = 11259375"
57 gdb_test "p 0xabcdef" " = 11259375"
58 gdb_test "p 0xAbCdEf" " = 11259375"
59 gdb_test "p/x 0x123" " = 0x123"
b5cfddf5
JK
60
61 # Test various binary values.
62
63 gdb_test "p 0b0" " = 0"
64 gdb_test "p 0b1111" " = 15"
65 gdb_test "p 0B1111" " = 15"
66 gdb_test "p -0b1111" " = -15"
c906108c
SS
67}
68
69proc test_character_literals_accepted {} {
70 global gdb_prompt
71
72 gdb_test "p 'a'" " = 97 'a'"
73 gdb_test "p/c 'a'" " = 97 'a'"
74 gdb_test "p/x 'a'" " = 0x61"
75 gdb_test "p/d 'a'" " = 97"
76 gdb_test "p/t 'a'" " = 1100001"
77 gdb_test "p '\\141'" " = 97 'a'"
78 gdb_test "p/x '\\377'" " = 0xff"
79 # Note "p '\''" => "= 39 '\''"
80 gdb_test "p '\\''" " = 39 '\\\\''"
81 # Note "p '\\'" => "= 92 '\\'"
82 gdb_test "p '\\\\'" " = 92 '\\\\\\\\'"
83}
84
85proc test_integer_literals_rejected {} {
86 global gdb_prompt
87
b5cfddf5
JK
88 test_print_reject "p 0x"
89 test_print_reject "p 0b"
c4b7bc2b
JB
90 gdb_test "p ''" "(Empty character constant\\.|A character constant must contain at least one character\\.)"
91 gdb_test "p '''" "(Empty character constant\\.|A character constant must contain at least one character\\.)"
c906108c
SS
92 test_print_reject "p '\\'"
93
94 # Note that this turns into "p '\\\'" at gdb's input.
95 test_print_reject "p '\\\\\\'"
96
97 # Test various decimal values.
98
99 test_print_reject "p DEADBEEF"
100
c906108c
SS
101 # Test various octal values.
102
103 test_print_reject "p 09"
104 test_print_reject "p 079"
105
106 # Test various hexadecimal values.
107
108 test_print_reject "p 0xG"
109 test_print_reject "p 0xAG"
b5cfddf5
JK
110
111 # Test various binary values.
112
113 test_print_reject "p 0b2"
114 test_print_reject "p 0b12"
c906108c
SS
115}
116
d30f5e1f 117proc test_float_accepted {} {
809df446
JK
118 global gdb_prompt
119
d30f5e1f
DE
120 # This test is useful to catch successful parsing of the first fp value.
121 gdb_test "p 123.4+56.7" " = 180.(099\[0-9]*|100\[0-9\]*)" "check for floating addition"
122
123 # Test all the suffixes (including no suffix).
124 gdb_test "p 1." " = 1"
125 gdb_test "p 1.5" " = 1.5"
126 gdb_test "p 1.f" " = 1"
127 gdb_test "p 1.5f" " = 1.5"
128 gdb_test "p 1.l" " = 1"
129 gdb_test "p 1.5l" " = 1.5"
809df446
JK
130
131 # Test hexadecimal floating point.
132 set test "p 0x1.1"
133 gdb_test_multiple $test $test {
134 -re " = 1\\.0625\r\n$gdb_prompt $" {
135 pass $test
136 }
137 -re "Invalid number \"0x1\\.1\"\\.\r\n$gdb_prompt $" {
138 # Older glibc does not support hex float, newer does.
139 xfail $test
140 }
141 }
d30f5e1f
DE
142}
143
144proc test_float_rejected {} {
145 # Gdb use to fail this test for all configurations. The C
146 # lexer thought that 123DEADBEEF was a floating point number, but
147 # then failed to notice that atof() only eats the 123 part.
148 # Fixed, 4/25/97, by Bob Manson.
149 test_print_reject "p 123DEADBEEF"
150
151 test_print_reject "p 123foobar.bazfoo3"
152 test_print_reject "p 123EEEEEEEEEEEEEEEEE33333k333"
d30f5e1f
DE
153
154 # Test bad suffixes.
155 test_print_reject "p 1.1x"
156 test_print_reject "p 1.1ff"
157 test_print_reject "p 1.1ll"
158}
159
c906108c
SS
160proc test_print_all_chars {} {
161 global gdb_prompt
162
30b66ecc
TT
163 gdb_test "p ctable1\[0\]" " = 0 '\\\\000'"
164 gdb_test "p ctable1\[1\]" " = 1 '\\\\001'"
165 gdb_test "p ctable1\[2\]" " = 2 '\\\\002'"
166 gdb_test "p ctable1\[3\]" " = 3 '\\\\003'"
167 gdb_test "p ctable1\[4\]" " = 4 '\\\\004'"
168 gdb_test "p ctable1\[5\]" " = 5 '\\\\005'"
169 gdb_test "p ctable1\[6\]" " = 6 '\\\\006'"
c906108c
SS
170 gdb_test "p ctable1\[7\]" " = 7 '\\\\a'"
171 gdb_test "p ctable1\[8\]" " = 8 '\\\\b'"
172 gdb_test "p ctable1\[9\]" " = 9 '\\\\t'"
173 gdb_test "p ctable1\[10\]" " = 10 '\\\\n'"
99ebe9ac 174 gdb_test "p ctable1\[11\]" " = 11 '\\\\v'"
c906108c
SS
175 gdb_test "p ctable1\[12\]" " = 12 '\\\\f'"
176 gdb_test "p ctable1\[13\]" " = 13 '\\\\r'"
30b66ecc
TT
177 gdb_test "p ctable1\[14\]" " = 14 '\\\\016'"
178 gdb_test "p ctable1\[15\]" " = 15 '\\\\017'"
179 gdb_test "p ctable1\[16\]" " = 16 '\\\\020'"
180 gdb_test "p ctable1\[17\]" " = 17 '\\\\021'"
181 gdb_test "p ctable1\[18\]" " = 18 '\\\\022'"
182 gdb_test "p ctable1\[19\]" " = 19 '\\\\023'"
183 gdb_test "p ctable1\[20\]" " = 20 '\\\\024'"
184 gdb_test "p ctable1\[21\]" " = 21 '\\\\025'"
185 gdb_test "p ctable1\[22\]" " = 22 '\\\\026'"
186 gdb_test "p ctable1\[23\]" " = 23 '\\\\027'"
187 gdb_test "p ctable1\[24\]" " = 24 '\\\\030'"
188 gdb_test "p ctable1\[25\]" " = 25 '\\\\031'"
189 gdb_test "p ctable1\[26\]" " = 26 '\\\\032'"
190 gdb_test "p ctable1\[27\]" " = 27 '\\\\033'"
191 gdb_test "p ctable1\[28\]" " = 28 '\\\\034'"
192 gdb_test "p ctable1\[29\]" " = 29 '\\\\035'"
193 gdb_test "p ctable1\[30\]" " = 30 '\\\\036'"
194 gdb_test "p ctable1\[31\]" " = 31 '\\\\037'"
c906108c
SS
195 gdb_test "p ctable1\[32\]" " = 32 ' '"
196 gdb_test "p ctable1\[33\]" " = 33 '!'"
197 gdb_test "p ctable1\[34\]" " = 34 '\"'"
198 gdb_test "p ctable1\[35\]" " = 35 '#'"
199 gdb_test "p ctable1\[36\]" " = 36 '\\\$'"
200 gdb_test "p ctable1\[37\]" " = 37 '%'"
201 gdb_test "p ctable1\[38\]" " = 38 '&'"
202 gdb_test "p ctable1\[39\]" " = 39 '\\\\''"
203 gdb_test "p ctable1\[40\]" " = 40 '\\('"
204 gdb_test "p ctable1\[41\]" " = 41 '\\)'"
205 gdb_test "p ctable1\[42\]" " = 42 '\\*'"
206 gdb_test "p ctable1\[43\]" " = 43 '\\+'"
207 gdb_test "p ctable1\[44\]" " = 44 ','"
208 gdb_test "p ctable1\[45\]" " = 45 '-'"
209 gdb_test "p ctable1\[46\]" " = 46 '.'"
210 gdb_test "p ctable1\[47\]" " = 47 '/'"
211 gdb_test "p ctable1\[48\]" " = 48 '0'"
212 gdb_test "p ctable1\[49\]" " = 49 '1'"
213 gdb_test "p ctable1\[50\]" " = 50 '2'"
214 gdb_test "p ctable1\[51\]" " = 51 '3'"
215 gdb_test "p ctable1\[52\]" " = 52 '4'"
216 gdb_test "p ctable1\[53\]" " = 53 '5'"
217 gdb_test "p ctable1\[54\]" " = 54 '6'"
218 gdb_test "p ctable1\[55\]" " = 55 '7'"
219 gdb_test "p ctable1\[56\]" " = 56 '8'"
220 gdb_test "p ctable1\[57\]" " = 57 '9'"
221 gdb_test "p ctable1\[58\]" " = 58 ':'"
222 gdb_test "p ctable1\[59\]" " = 59 ';'"
223 gdb_test "p ctable1\[60\]" " = 60 '<'"
224 gdb_test "p ctable1\[61\]" " = 61 '='"
225 gdb_test "p ctable1\[62\]" " = 62 '>'"
226 gdb_test "p ctable1\[63\]" " = 63 '\\?'"
227 gdb_test "p ctable1\[64\]" " = 64 '@'"
228 gdb_test "p ctable1\[65\]" " = 65 'A'"
229 gdb_test "p ctable1\[66\]" " = 66 'B'"
230 gdb_test "p ctable1\[67\]" " = 67 'C'"
231 gdb_test "p ctable1\[68\]" " = 68 'D'"
232 gdb_test "p ctable1\[69\]" " = 69 'E'"
233 gdb_test "p ctable1\[70\]" " = 70 'F'"
234 gdb_test "p ctable1\[71\]" " = 71 'G'"
235 gdb_test "p ctable1\[72\]" " = 72 'H'"
236 gdb_test "p ctable1\[73\]" " = 73 'I'"
237 gdb_test "p ctable1\[74\]" " = 74 'J'"
238 gdb_test "p ctable1\[75\]" " = 75 'K'"
239 gdb_test "p ctable1\[76\]" " = 76 'L'"
240 gdb_test "p ctable1\[77\]" " = 77 'M'"
241 gdb_test "p ctable1\[78\]" " = 78 'N'"
242 gdb_test "p ctable1\[79\]" " = 79 'O'"
243 gdb_test "p ctable1\[80\]" " = 80 'P'"
244 gdb_test "p ctable1\[81\]" " = 81 'Q'"
245 gdb_test "p ctable1\[82\]" " = 82 'R'"
246 gdb_test "p ctable1\[83\]" " = 83 'S'"
247 gdb_test "p ctable1\[84\]" " = 84 'T'"
248 gdb_test "p ctable1\[85\]" " = 85 'U'"
249 gdb_test "p ctable1\[86\]" " = 86 'V'"
250 gdb_test "p ctable1\[87\]" " = 87 'W'"
251 gdb_test "p ctable1\[88\]" " = 88 'X'"
252 gdb_test "p ctable1\[89\]" " = 89 'Y'"
253 gdb_test "p ctable1\[90\]" " = 90 'Z'"
254 gdb_test "p ctable1\[91\]" " = 91 '\\\['"
255 gdb_test "p ctable1\[92\]" " = 92 '\\\\\\\\'"
256 gdb_test "p ctable1\[93\]" " = 93 '\\\]'"
257 gdb_test "p ctable1\[94\]" " = 94 '\\^'"
258 gdb_test "p ctable1\[95\]" " = 95 '_'"
259 gdb_test "p ctable1\[96\]" " = 96 '`'"
260 gdb_test "p ctable1\[97\]" " = 97 'a'"
261 gdb_test "p ctable1\[98\]" " = 98 'b'"
262 gdb_test "p ctable1\[99\]" " = 99 'c'"
263 gdb_test "p ctable1\[100\]" " = 100 'd'"
264 gdb_test "p ctable1\[101\]" " = 101 'e'"
265 gdb_test "p ctable1\[102\]" " = 102 'f'"
266 gdb_test "p ctable1\[103\]" " = 103 'g'"
267 gdb_test "p ctable1\[104\]" " = 104 'h'"
268 gdb_test "p ctable1\[105\]" " = 105 'i'"
269 gdb_test "p ctable1\[106\]" " = 106 'j'"
270 gdb_test "p ctable1\[107\]" " = 107 'k'"
271 gdb_test "p ctable1\[108\]" " = 108 'l'"
272 gdb_test "p ctable1\[109\]" " = 109 'm'"
273 gdb_test "p ctable1\[110\]" " = 110 'n'"
274 gdb_test "p ctable1\[111\]" " = 111 'o'"
275 gdb_test "p ctable1\[112\]" " = 112 'p'"
276 gdb_test "p ctable1\[113\]" " = 113 'q'"
277 gdb_test "p ctable1\[114\]" " = 114 'r'"
278 gdb_test "p ctable1\[115\]" " = 115 's'"
279 gdb_test "p ctable1\[116\]" " = 116 't'"
280 gdb_test "p ctable1\[117\]" " = 117 'u'"
281 gdb_test "p ctable1\[118\]" " = 118 'v'"
282 gdb_test "p ctable1\[119\]" " = 119 'w'"
283 gdb_test "p ctable1\[120\]" " = 120 'x'"
284 gdb_test "p ctable1\[121\]" " = 121 'y'"
285 gdb_test "p ctable1\[122\]" " = 122 'z'"
286 gdb_test "p ctable1\[123\]" " = 123 '\[{\]+'"
287 gdb_test "p ctable1\[124\]" " = 124 '\[|\]+'"
288 gdb_test "p ctable1\[125\]" " = 125 '\[}\]+'"
289 gdb_test "p ctable1\[126\]" " = 126 '\[~\]'"
290 gdb_test "p ctable1\[127\]" " = 127 '\\\\177'"
291 gdb_test "p ctable1\[128\]" " = 128 '\\\\200'"
292 gdb_test "p ctable1\[129\]" " = 129 '\\\\201'"
293 gdb_test "p ctable1\[130\]" " = 130 '\\\\202'"
294 gdb_test "p ctable1\[131\]" " = 131 '\\\\203'"
295 gdb_test "p ctable1\[132\]" " = 132 '\\\\204'"
296 gdb_test "p ctable1\[133\]" " = 133 '\\\\205'"
297 gdb_test "p ctable1\[134\]" " = 134 '\\\\206'"
298 gdb_test "p ctable1\[135\]" " = 135 '\\\\207'"
299 gdb_test "p ctable1\[136\]" " = 136 '\\\\210'"
300 gdb_test "p ctable1\[137\]" " = 137 '\\\\211'"
301 gdb_test "p ctable1\[138\]" " = 138 '\\\\212'"
302 gdb_test "p ctable1\[139\]" " = 139 '\\\\213'"
303 gdb_test "p ctable1\[140\]" " = 140 '\\\\214'"
304 gdb_test "p ctable1\[141\]" " = 141 '\\\\215'"
305 gdb_test "p ctable1\[142\]" " = 142 '\\\\216'"
306 gdb_test "p ctable1\[143\]" " = 143 '\\\\217'"
307 gdb_test "p ctable1\[144\]" " = 144 '\\\\220'"
308 gdb_test "p ctable1\[145\]" " = 145 '\\\\221'"
309 gdb_test "p ctable1\[146\]" " = 146 '\\\\222'"
310 gdb_test "p ctable1\[147\]" " = 147 '\\\\223'"
311 gdb_test "p ctable1\[148\]" " = 148 '\\\\224'"
312 gdb_test "p ctable1\[149\]" " = 149 '\\\\225'"
313 gdb_test "p ctable1\[150\]" " = 150 '\\\\226'"
314 gdb_test "p ctable1\[151\]" " = 151 '\\\\227'"
315 gdb_test "p ctable1\[152\]" " = 152 '\\\\230'"
316 gdb_test "p ctable1\[153\]" " = 153 '\\\\231'"
317 gdb_test "p ctable1\[154\]" " = 154 '\\\\232'"
318 gdb_test "p ctable1\[155\]" " = 155 '\\\\233'"
319 gdb_test "p ctable1\[156\]" " = 156 '\\\\234'"
320 gdb_test "p ctable1\[157\]" " = 157 '\\\\235'"
321 gdb_test "p ctable1\[158\]" " = 158 '\\\\236'"
322 gdb_test "p ctable1\[159\]" " = 159 '\\\\237'"
323 gdb_test "p ctable1\[160\]" " = 160 '\\\\240'"
324 gdb_test "p ctable1\[161\]" " = 161 '\\\\241'"
325 gdb_test "p ctable1\[162\]" " = 162 '\\\\242'"
326 gdb_test "p ctable1\[163\]" " = 163 '\\\\243'"
327 gdb_test "p ctable1\[164\]" " = 164 '\\\\244'"
328 gdb_test "p ctable1\[165\]" " = 165 '\\\\245'"
329 gdb_test "p ctable1\[166\]" " = 166 '\\\\246'"
330 gdb_test "p ctable1\[167\]" " = 167 '\\\\247'"
331 gdb_test "p ctable1\[168\]" " = 168 '\\\\250'"
332 gdb_test "p ctable1\[169\]" " = 169 '\\\\251'"
333 gdb_test "p ctable1\[170\]" " = 170 '\\\\252'"
334 gdb_test "p ctable1\[171\]" " = 171 '\\\\253'"
335 gdb_test "p ctable1\[172\]" " = 172 '\\\\254'"
336 gdb_test "p ctable1\[173\]" " = 173 '\\\\255'"
337 gdb_test "p ctable1\[174\]" " = 174 '\\\\256'"
338 gdb_test "p ctable1\[175\]" " = 175 '\\\\257'"
339 gdb_test "p ctable1\[176\]" " = 176 '\\\\260'"
340 gdb_test "p ctable1\[177\]" " = 177 '\\\\261'"
341 gdb_test "p ctable1\[178\]" " = 178 '\\\\262'"
342 gdb_test "p ctable1\[179\]" " = 179 '\\\\263'"
343 gdb_test "p ctable1\[180\]" " = 180 '\\\\264'"
344 gdb_test "p ctable1\[181\]" " = 181 '\\\\265'"
345 gdb_test "p ctable1\[182\]" " = 182 '\\\\266'"
346 gdb_test "p ctable1\[183\]" " = 183 '\\\\267'"
347 gdb_test "p ctable1\[184\]" " = 184 '\\\\270'"
348 gdb_test "p ctable1\[185\]" " = 185 '\\\\271'"
349 gdb_test "p ctable1\[186\]" " = 186 '\\\\272'"
350 gdb_test "p ctable1\[187\]" " = 187 '\\\\273'"
351 gdb_test "p ctable1\[188\]" " = 188 '\\\\274'"
352 gdb_test "p ctable1\[189\]" " = 189 '\\\\275'"
353 gdb_test "p ctable1\[190\]" " = 190 '\\\\276'"
354 gdb_test "p ctable1\[191\]" " = 191 '\\\\277'"
355 gdb_test "p ctable1\[192\]" " = 192 '\\\\300'"
356 gdb_test "p ctable1\[193\]" " = 193 '\\\\301'"
357 gdb_test "p ctable1\[194\]" " = 194 '\\\\302'"
358 gdb_test "p ctable1\[195\]" " = 195 '\\\\303'"
359 gdb_test "p ctable1\[196\]" " = 196 '\\\\304'"
360 gdb_test "p ctable1\[197\]" " = 197 '\\\\305'"
361 gdb_test "p ctable1\[198\]" " = 198 '\\\\306'"
362 gdb_test "p ctable1\[199\]" " = 199 '\\\\307'"
363 gdb_test "p ctable1\[200\]" " = 200 '\\\\310'"
364 gdb_test "p ctable1\[201\]" " = 201 '\\\\311'"
365 gdb_test "p ctable1\[202\]" " = 202 '\\\\312'"
366 gdb_test "p ctable1\[203\]" " = 203 '\\\\313'"
367 gdb_test "p ctable1\[204\]" " = 204 '\\\\314'"
368 gdb_test "p ctable1\[205\]" " = 205 '\\\\315'"
369 gdb_test "p ctable1\[206\]" " = 206 '\\\\316'"
370 gdb_test "p ctable1\[207\]" " = 207 '\\\\317'"
371 gdb_test "p ctable1\[208\]" " = 208 '\\\\320'"
372 gdb_test "p ctable1\[209\]" " = 209 '\\\\321'"
373 gdb_test "p ctable1\[210\]" " = 210 '\\\\322'"
374 gdb_test "p ctable1\[211\]" " = 211 '\\\\323'"
375 gdb_test "p ctable1\[212\]" " = 212 '\\\\324'"
376 gdb_test "p ctable1\[213\]" " = 213 '\\\\325'"
377 gdb_test "p ctable1\[214\]" " = 214 '\\\\326'"
378 gdb_test "p ctable1\[215\]" " = 215 '\\\\327'"
379 gdb_test "p ctable1\[216\]" " = 216 '\\\\330'"
380 gdb_test "p ctable1\[217\]" " = 217 '\\\\331'"
381 gdb_test "p ctable1\[218\]" " = 218 '\\\\332'"
382 gdb_test "p ctable1\[219\]" " = 219 '\\\\333'"
383 gdb_test "p ctable1\[220\]" " = 220 '\\\\334'"
384 gdb_test "p ctable1\[221\]" " = 221 '\\\\335'"
385 gdb_test "p ctable1\[222\]" " = 222 '\\\\336'"
386 gdb_test "p ctable1\[223\]" " = 223 '\\\\337'"
387 gdb_test "p ctable1\[224\]" " = 224 '\\\\340'"
388 gdb_test "p ctable1\[225\]" " = 225 '\\\\341'"
389 gdb_test "p ctable1\[226\]" " = 226 '\\\\342'"
390 gdb_test "p ctable1\[227\]" " = 227 '\\\\343'"
391 gdb_test "p ctable1\[228\]" " = 228 '\\\\344'"
392 gdb_test "p ctable1\[229\]" " = 229 '\\\\345'"
393 gdb_test "p ctable1\[230\]" " = 230 '\\\\346'"
394 gdb_test "p ctable1\[231\]" " = 231 '\\\\347'"
395 gdb_test "p ctable1\[232\]" " = 232 '\\\\350'"
396 gdb_test "p ctable1\[233\]" " = 233 '\\\\351'"
397 gdb_test "p ctable1\[234\]" " = 234 '\\\\352'"
398 gdb_test "p ctable1\[235\]" " = 235 '\\\\353'"
399 gdb_test "p ctable1\[236\]" " = 236 '\\\\354'"
400 gdb_test "p ctable1\[237\]" " = 237 '\\\\355'"
401 gdb_test "p ctable1\[238\]" " = 238 '\\\\356'"
402 gdb_test "p ctable1\[239\]" " = 239 '\\\\357'"
403 gdb_test "p ctable1\[240\]" " = 240 '\\\\360'"
404 gdb_test "p ctable1\[241\]" " = 241 '\\\\361'"
405 gdb_test "p ctable1\[242\]" " = 242 '\\\\362'"
406 gdb_test "p ctable1\[243\]" " = 243 '\\\\363'"
407 gdb_test "p ctable1\[244\]" " = 244 '\\\\364'"
408 gdb_test "p ctable1\[245\]" " = 245 '\\\\365'"
409 gdb_test "p ctable1\[246\]" " = 246 '\\\\366'"
410 gdb_test "p ctable1\[247\]" " = 247 '\\\\367'"
411 gdb_test "p ctable1\[248\]" " = 248 '\\\\370'"
412 gdb_test "p ctable1\[249\]" " = 249 '\\\\371'"
413 gdb_test "p ctable1\[250\]" " = 250 '\\\\372'"
414 gdb_test "p ctable1\[251\]" " = 251 '\\\\373'"
415 gdb_test "p ctable1\[252\]" " = 252 '\\\\374'"
416 gdb_test "p ctable1\[253\]" " = 253 '\\\\375'"
417 gdb_test "p ctable1\[254\]" " = 254 '\\\\376'"
418 gdb_test "p ctable1\[255\]" " = 255 '\\\\377'"
419}
420
421# Test interaction of the number of print elements to print and the
422# repeat count, set to the default of 10.
423
424proc test_print_repeats_10 {} {
9cb709b6 425 global gdb_prompt decimal
c906108c 426
13e4e967 427 for { set x 1 } { $x <= 16 } { incr x } {
27d3a1a2 428 gdb_test_no_output "set print elements $x"
13e4e967 429 for { set e 1 } { $e <= 16 } {incr e } {
c906108c
SS
430 set v [expr $e - 1];
431 set command "p &ctable2\[${v}*16\]"
432 if { $x < $e } {
433 set aval $x;
434 } else {
435 set aval $e;
436 }
437 set xval [expr $x - $e];
438 if { $xval < 0 } {
439 set xval 0;
440 }
441 if { $aval > 10 } {
442 set a "'a' <repeats $aval times>";
443 if { $xval > 0 } {
444 set a "${a}, \\\"";
445 }
446 } else {
447 set a "\\\"[string range "aaaaaaaaaaaaaaaa" 1 $aval]";
448 if { $xval > 10 } {
449 set a "$a\\\", ";
450 }
451 }
452 set xstr "";
453 if { $xval > 10 } {
454 set xstr "'X' <repeats $xval times>";
455 } else {
456 if { $xval > 0 } {
457 set xstr "[string range "XXXXXXXXXXXXXXXX" 1 $xval]\\\"";
458 } else {
459 if { $aval <= 10 } {
460 set xstr "\\\"";
461 }
462 }
463 }
464 if { $aval < 16 } {
465 set xstr "${xstr}\[.\]\[.\]\[.\]"
466 }
9cb709b6 467 set string " = \[(\]unsigned char \[*\]\[)\] <ctable2(\\+$decimal)?> ${a}${xstr}";
c906108c
SS
468 gdb_test "$command" "$string" "$command with print elements set to $x";
469 }
470 }
471}
472
490f124f
PA
473# This tests whether GDB uses the correct element content offsets
474# (relative to the complete `some_struct' value) when counting value
475# repetitions.
476
477proc test_print_repeats_embedded_array {} {
478 global gdb_prompt
479
480 gdb_test_escape_braces "p/x some_struct" \
481 "= {a = 0x12345678, b = 0x87654321, array = {0xaa <repeats 20 times>}}" \
482 "correct element repeats in array embedded at offset > 0"
483}
484
c906108c 485proc test_print_strings {} {
9cb709b6 486 global gdb_prompt decimal
c906108c
SS
487
488 # We accept "(unsigned char *) " before the string. char vs. unsigned char
489 # is already tested elsewhere.
490
491 # Test that setting print elements unlimited doesn't completely suppress
492 # printing; this was a bug in older gdb's.
27d3a1a2 493 gdb_test_no_output "set print elements 0"
c906108c
SS
494 gdb_test "p teststring" \
495 " = (.unsigned char .. )?\"teststring contents\"" "p teststring with elements set to 0"
27d3a1a2 496 gdb_test_no_output "set print elements 1"
c906108c
SS
497 gdb_test "p teststring" \
498 " = (.unsigned char .. )?\"t\"\\.\\.\\." "p teststring with elements set to 1"
27d3a1a2 499 gdb_test_no_output "set print elements 5"
c906108c
SS
500 gdb_test "p teststring" \
501 " = (.unsigned char .. )?\"tests\"\\.\\.\\." "p teststring with elements set to 5"
27d3a1a2 502 gdb_test_no_output "set print elements 19"
c906108c
SS
503 gdb_test "p teststring" \
504 " = (.unsigned char .. )?\"teststring contents\"" "p teststring with elements set to 19"
27d3a1a2 505 gdb_test_no_output "set print elements 20"
c906108c
SS
506 gdb_test "p teststring" \
507 " = (.unsigned char .. )?\"teststring contents\"" "p teststring with elements set to 20"
508
27d3a1a2 509 gdb_test_no_output "set print elements 8"
c906108c
SS
510
511 gdb_test "p &ctable1\[0\]" \
9cb709b6 512 " = \\(unsigned char \\*\\) <ctable1> \"\""
c906108c 513 gdb_test "p &ctable1\[1\]" \
9cb709b6 514 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\001\\\\002\\\\003\\\\004\\\\005\\\\006\\\\a\\\\b\"..."
c906108c 515 gdb_test "p &ctable1\[1*8\]" \
9cb709b6 516 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\b\\\\t\\\\n\\\\v\\\\f\\\\r\\\\016\\\\017\"..."
c906108c 517 gdb_test "p &ctable1\[2*8\]" \
9cb709b6 518 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\020\\\\021\\\\022\\\\023\\\\024\\\\025\\\\026\\\\027\"..."
c906108c 519 gdb_test "p &ctable1\[3*8\]" \
9cb709b6 520 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\030\\\\031\\\\032\\\\033\\\\034\\\\035\\\\036\\\\037\"..."
c906108c 521 gdb_test "p &ctable1\[4*8\]" \
9cb709b6 522 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \" !\\\\\"#\\\$%&'\"..."
c906108c 523 gdb_test "p &ctable1\[5*8\]" \
9cb709b6 524 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\(\\)\\*\\+,-./\"..."
c906108c 525 gdb_test "p &ctable1\[6*8\]" \
9cb709b6 526 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"01234567\"..."
c906108c 527 gdb_test "p &ctable1\[7*8\]" \
9cb709b6 528 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"89:;<=>\\?\"..."
c906108c 529 gdb_test "p &ctable1\[8*8\]" \
9cb709b6 530 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"@ABCDEFG\"..."
c906108c 531 gdb_test "p &ctable1\[9*8\]" \
9cb709b6 532 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"HIJKLMNO\"..."
c906108c 533 gdb_test "p &ctable1\[10*8\]" \
9cb709b6 534 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"PQRSTUVW\"..."
c906108c 535 gdb_test "p &ctable1\[11*8\]" \
9cb709b6 536 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"XYZ\\\[\\\\\\\\\\\]\\^_\"..."
c906108c 537 gdb_test "p &ctable1\[12*8\]" \
9cb709b6 538 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"`abcdefg\"..."
c906108c 539 gdb_test "p &ctable1\[13*8\]" \
9cb709b6 540 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"hijklmno\"..."
c906108c 541 gdb_test "p &ctable1\[14*8\]" \
9cb709b6 542 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"pqrstuvw\"..."
c906108c 543 gdb_test "p &ctable1\[15*8\]" \
9cb709b6 544 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"xyz\[{|}\]+\\~\\\\177\"..."
c906108c 545 gdb_test "p &ctable1\[16*8\]" \
9cb709b6 546 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\200\\\\201\\\\202\\\\203\\\\204\\\\205\\\\206\\\\207\"..."
c906108c 547 gdb_test "p &ctable1\[17*8\]" \
9cb709b6 548 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\210\\\\211\\\\212\\\\213\\\\214\\\\215\\\\216\\\\217\"..."
c906108c 549 gdb_test "p &ctable1\[18*8\]" \
9cb709b6 550 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\220\\\\221\\\\222\\\\223\\\\224\\\\225\\\\226\\\\227\"..."
c906108c 551 gdb_test "p &ctable1\[19*8\]" \
9cb709b6 552 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\230\\\\231\\\\232\\\\233\\\\234\\\\235\\\\236\\\\237\"..."
c906108c 553 gdb_test "p &ctable1\[20*8\]" \
9cb709b6 554 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\240\\\\241\\\\242\\\\243\\\\244\\\\245\\\\246\\\\247\"..."
c906108c 555 gdb_test "p &ctable1\[21*8\]" \
9cb709b6 556 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\250\\\\251\\\\252\\\\253\\\\254\\\\255\\\\256\\\\257\"..."
c906108c 557 gdb_test "p &ctable1\[22*8\]" \
9cb709b6 558 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\260\\\\261\\\\262\\\\263\\\\264\\\\265\\\\266\\\\267\"..."
c906108c 559 gdb_test "p &ctable1\[23*8\]" \
9cb709b6 560 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\270\\\\271\\\\272\\\\273\\\\274\\\\275\\\\276\\\\277\"..."
c906108c 561 gdb_test "p &ctable1\[24*8\]" \
9cb709b6 562 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\300\\\\301\\\\302\\\\303\\\\304\\\\305\\\\306\\\\307\"..."
c906108c 563 gdb_test "p &ctable1\[25*8\]" \
9cb709b6 564 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\310\\\\311\\\\312\\\\313\\\\314\\\\315\\\\316\\\\317\"..."
c906108c 565 gdb_test "p &ctable1\[26*8\]" \
9cb709b6 566 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\320\\\\321\\\\322\\\\323\\\\324\\\\325\\\\326\\\\327\"..."
c906108c 567 gdb_test "p &ctable1\[27*8\]" \
9cb709b6 568 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\330\\\\331\\\\332\\\\333\\\\334\\\\335\\\\336\\\\337\"..."
c906108c 569 gdb_test "p &ctable1\[28*8\]" \
9cb709b6 570 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\340\\\\341\\\\342\\\\343\\\\344\\\\345\\\\346\\\\347\"..."
c906108c 571 gdb_test "p &ctable1\[29*8\]" \
9cb709b6 572 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\350\\\\351\\\\352\\\\353\\\\354\\\\355\\\\356\\\\357\"..."
c906108c 573 gdb_test "p &ctable1\[30*8\]" \
9cb709b6 574 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\360\\\\361\\\\362\\\\363\\\\364\\\\365\\\\366\\\\367\"..."
c906108c 575 gdb_test "p &ctable1\[31*8\]" \
9cb709b6 576 " = \\(unsigned char \\*\\) <ctable1\\+$decimal> \"\\\\370\\\\371\\\\372\\\\373\\\\374\\\\375\\\\376\\\\377\"..."
c906108c
SS
577}
578
579proc test_print_int_arrays {} {
580 global gdb_prompt
581
27d3a1a2 582 gdb_test_no_output "set print elements 24"
c906108c 583
39124dea 584 gdb_test_escape_braces "p int1dim" \
c906108c 585 " = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}"
39124dea 586 gdb_test_escape_braces "p int2dim" \
c906108c 587 " = {{0, 1, 2, 3}, {4, 5, 6, 7}, {8, 9, 10, 11}}"
39124dea 588 gdb_test_escape_braces "p int3dim" \
c906108c 589 " = {{{0, 1}, {2, 3}, {4, 5}}, {{6, 7}, {8, 9}, {10, 11}}}"
39124dea 590 gdb_test_escape_braces "p int4dim" \
c906108c
SS
591 " = {{{{0, 1}, {2, 3}, {4, 5}}, {{6, 7}, {8, 9}, {10, 11}}}}"
592}
593
751a959b
EZ
594proc test_print_typedef_arrays {} {
595 global gdb_prompt
596
27d3a1a2 597 gdb_test_no_output "set print elements 24"
751a959b 598
39124dea 599 gdb_test_escape_braces "p a1" \
751a959b
EZ
600 " = {2, 4, 6, 8, 10, 12, 14, 16, 18, 20}"
601 gdb_test "p a1\[0\]" " = 2"
602 gdb_test "p a1\[9\]" " = 20"
603
604 gdb_test "p a2" \
605 " = \"abcd\""
606 gdb_test "p a2\[0\]" " = 97 'a'"
607 gdb_test "p a2\[3\]" " = 100 'd'"
421d5d99
TT
608
609 # Regression test of null-stop; PR 11049.
27d3a1a2 610 gdb_test_no_output "set print null-stop on"
421d5d99 611 gdb_test "p a2" " = \"abcd\"" "print a2 with null-stop on"
27d3a1a2 612 gdb_test_no_output "set print null-stop off"
751a959b
EZ
613}
614
c906108c
SS
615proc test_artificial_arrays {} {
616 # Send \026@ instead of just @ in case the kill character is @.
39124dea
FN
617 gdb_test_escape_braces "p int1dim\[0\]\026@2" " = {0, 1}" {p int1dim[0]@2}
618 gdb_test_escape_braces "p int1dim\[0\]\026@2\026@3" \
c906108c
SS
619 "({{0, 1}, {2, 3}, {4, 5}}|\[Cc\]annot.*)" \
620 {p int1dim[0]@2@3}
39124dea 621 gdb_test_escape_braces {p/x (short [])0x12345678} \
c906108c
SS
622 " = ({0x1234, 0x5678}|{0x5678, 0x1234})"
623}
624
625proc test_print_char_arrays {} {
626 global gdb_prompt
9cb709b6 627 global hex decimal
c906108c 628
27d3a1a2
MS
629 gdb_test_no_output "set print elements 24"
630 gdb_test_no_output "set print address on"
c906108c
SS
631
632 gdb_test "p arrays" \
ea37ba09 633 " = {array1 = \"abc\", array2 = \"d\", array3 = \"e\", array4 = \"fg\", array5 = \"hij\"}"
c906108c 634
9cb709b6 635 gdb_test "p parrays" " = \\(struct some_arrays \\*\\) $hex <arrays>"
ea37ba09 636 gdb_test "p parrays->array1" " = \"abc\""
9cb709b6 637 gdb_test "p &parrays->array1" " = \\(unsigned char \\(\\*\\)\\\[4\\\]\\) $hex <arrays>"
ea37ba09 638 gdb_test "p parrays->array2" " = \"d\""
9cb709b6 639 gdb_test "p &parrays->array2" " = \\(unsigned char \\(\\*\\)\\\[1\\\]\\) $hex <arrays\\+$decimal>"
ea37ba09 640 gdb_test "p parrays->array3" " = \"e\""
9cb709b6 641 gdb_test "p &parrays->array3" " = \\(unsigned char \\(\\*\\)\\\[1\\\]\\) $hex <arrays\\+$decimal>"
ea37ba09 642 gdb_test "p parrays->array4" " = \"fg\""
9cb709b6 643 gdb_test "p &parrays->array4" " = \\(unsigned char \\(\\*\\)\\\[2\\\]\\) $hex <arrays\\+$decimal>"
ea37ba09 644 gdb_test "p parrays->array5" " = \"hij\""
9cb709b6 645 gdb_test "p &parrays->array5" " = \\(unsigned char \\(\\*\\)\\\[4\\\]\\) $hex <arrays\\+$decimal>"
c906108c 646
27d3a1a2 647 gdb_test_no_output "set print address off"
c906108c
SS
648}
649
650proc test_print_string_constants {} {
651 global gdb_prompt
652
27d3a1a2 653 gdb_test_no_output "set print elements 50"
c906108c
SS
654
655 if [target_info exists gdb,cannot_call_functions] {
656 setup_xfail "*-*-*" 2416
657 fail "This target can not call functions"
658 return
659 }
660
9846de1b
JM
661 # We need to up this because this can be really slow on some boards.
662 # (Test may involve inferior malloc() calls).
663 set timeout 60;
664
c906108c 665 gdb_test "p \"a string\"" " = \"a string\""
30b66ecc 666 gdb_test "p \"embedded \\000 null\"" " = \"embedded \\\\000 null\""
c906108c 667 gdb_test "p \"abcd\"\[2\]" " = 99 'c'"
c906108c 668 gdb_test "p sizeof (\"abcdef\")" " = 7"
c906108c 669 gdb_test "ptype \"foo\"" " = char \\\[4\\\]"
c906108c 670 gdb_test "p *\"foo\"" " = 102 'f'"
c906108c 671 gdb_test "ptype *\"foo\"" " = char"
c906108c 672 gdb_test "p &*\"foo\"" " = \"foo\""
c906108c 673 gdb_test "ptype &*\"foo\"" "type = char \\*"
c906108c
SS
674 gdb_test "p (char *)\"foo\"" " = \"foo\""
675}
676
677proc test_print_array_constants {} {
678
679 if [target_info exists gdb,cannot_call_functions] {
680 setup_xfail "*-*-*" 2416
681 fail "This target can not call functions"
682 return
683 }
684
9846de1b
JM
685 # We need to up this because this can be really slow on some boards.
686 # (Test may involve inferior malloc() calls).
687 set timeout 60;
688
c906108c 689 gdb_test "print {'a','b','c'}" " = \"abc\""
39124dea 690 gdb_test_escape_braces "print {0,1,2}" " = {0, 1, 2}"
39124dea 691 gdb_test_escape_braces "print {(long)0,(long)1,(long)2}" " = {0, 1, 2}"
39124dea 692 gdb_test_escape_braces "print {{0,1,2},{3,4,5}}" " = {{0, 1, 2}, {3, 4, 5}}"
c906108c 693 gdb_test "print {4,5,6}\[2\]" " = 6"
63092375 694 gdb_test "print *&{4,5,6}\[1\]" "Attempt to take address of value not located in memory."
c906108c
SS
695}
696
23bd0f7c
PA
697proc test_print_enums {} {
698 # Regression test for PR11827.
699 gdb_test "print some_volatile_enum" "enumvolval1"
cafec441
TT
700
701 gdb_test "print three" " = \\\(ONE \\| TWO\\\)"
23bd0f7c
PA
702}
703
c906108c
SS
704proc test_printf {} {
705 gdb_test "printf \"x=%d,y=%d,z=%d\\n\", 5, 6, 7" "x=5,y=6,z=7"
706 gdb_test "printf \"string=%.4sxx\\n\", teststring" "string=testxx"
707 gdb_test "printf \"string=%sxx\\n\", teststring" \
708 "string=teststring contentsxx"
709
710 gdb_test "printf \"%f is fun\\n\", 1.0" "1\.0+ is fun"
711
712 # Test mixing args of different sizes.
713 gdb_test "printf \"x=%d,y=%f,z=%d\\n\", 5, 6.0, 7" "x=5,y=6\.0+,z=7"
714 gdb_test "printf \"%x %f, %c %x, %x, %f\\n\", 0xbad, -99.541, 'z',\
7150xfeedface, 0xdeadbeef, 5.0" "bad -99.54\[0-9\]+, z feedface, deadbeef, 5.0+"
379a77b5
TT
716
717 # Regression test for C lexer bug.
718 gdb_test "printf \"%c\\n\", \"x\"\[1,0\]" "x"
a0e0ef55
TT
719
720 # Regression test for "%% at end of format string.
721 # See http://sourceware.org/bugzilla/show_bug.cgi?id=11345
722 gdb_test "printf \"%%%d%%\\n\", 5" "%5%"
c906108c
SS
723}
724
1a619819
LM
725#Test printing DFP values with printf
726proc test_printf_with_dfp {} {
727
728 # Test various dfp values, covering 32-bit, 64-bit and 128-bit ones
729
730 # _Decimal32 constants, which can support up to 7 digits
0aea4bf3
LM
731 gdb_test "printf \"%Hf\\n\",1.2df" "1.2"
732 gdb_test "printf \"%Hf\\n\",-1.2df" "-1.2"
733 gdb_test "printf \"%Hf\\n\",1.234567df" "1.234567"
734 gdb_test "printf \"%Hf\\n\",-1.234567df" "-1.234567"
735 gdb_test "printf \"%Hf\\n\",1234567.df" "1234567"
736 gdb_test "printf \"%Hf\\n\",-1234567.df" "-1234567"
1a619819 737
0aea4bf3
LM
738 gdb_test "printf \"%Hf\\n\",1.2E1df" "12"
739 gdb_test "printf \"%Hf\\n\",1.2E10df" "1.2E\\+10"
740 gdb_test "printf \"%Hf\\n\",1.2E-10df" "1.2E-10"
1a619819
LM
741
742 # The largest exponent for 32-bit dfp value is 96.
0aea4bf3 743 gdb_test "printf \"%Hf\\n\",1.2E96df" "1.200000E\\+96"
1a619819
LM
744
745 # _Decimal64 constants, which can support up to 16 digits
0aea4bf3
LM
746 gdb_test "printf \"%Df\\n\",1.2dd" "1.2"
747 gdb_test "printf \"%Df\\n\",-1.2dd" "-1.2"
748 gdb_test "printf \"%Df\\n\",1.234567890123456dd" "1.234567890123456"
749 gdb_test "printf \"%Df\\n\",-1.234567890123456dd" "-1.234567890123456"
750 gdb_test "printf \"%Df\\n\",1234567890123456.dd" "1234567890123456"
751 gdb_test "printf \"%Df\\n\",-1234567890123456.dd" "-1234567890123456"
1a619819 752
0aea4bf3
LM
753 gdb_test "printf \"%Df\\n\",1.2E1dd" "12"
754 gdb_test "printf \"%Df\\n\",1.2E10dd" "1.2E\\+10"
755 gdb_test "printf \"%Df\\n\",1.2E-10dd" "1.2E-10"
1a619819
LM
756
757 # The largest exponent for 64-bit dfp value is 384.
0aea4bf3 758 gdb_test "printf \"%Df\\n\",1.2E384dd" "1.200000000000000E\\+384"
1a619819
LM
759
760 # _Decimal128 constants, which can support up to 34 digits
0aea4bf3
LM
761 gdb_test "printf \"%DDf\\n\",1.2dl" "1.2"
762 gdb_test "printf \"%DDf\\n\",-1.2dl" "-1.2"
763 gdb_test "printf \"%DDf\\n\",1.234567890123456789012345678901234dl" "1.234567890123456789012345678901234"
764 gdb_test "printf \"%DDf\\n\",-1.234567890123456789012345678901234dl" "-1.234567890123456789012345678901234"
765 gdb_test "printf \"%DDf\\n\",1234567890123456789012345678901234.dl" "1234567890123456789012345678901234"
766 gdb_test "printf \"%DDf\\n\",-1234567890123456789012345678901234.dl" "-1234567890123456789012345678901234"
1a619819 767
0aea4bf3
LM
768 gdb_test "printf \"%DDf\\n\",1.2E1dl" "12"
769 gdb_test "printf \"%DDf\\n\",1.2E10dl" "1.2E\\+10"
770 gdb_test "printf \"%DDf\\n\",1.2E-10dl" "1.2E-10"
1a619819
LM
771
772 # The largest exponent for 128-bit dfp value is 6144.
0aea4bf3 773 gdb_test "printf \"%DDf\\n\",1.2E6144dl" "1.200000000000000000000000000000000E\\+6144"
1a619819
LM
774}
775
9cb709b6
TT
776proc test_print_symbol {} {
777 gdb_test_no_output "set print symbol on"
778
779 gdb_test "print &three" " = .* <three>"
780 gdb_test "print parrays" " = .* <arrays>"
781
782 # In case somebody adds tests after this.
783 gdb_test_no_output "set print symbol off"
784}
785
39124dea
FN
786# Escape a left curly brace to prevent it from being interpreted as
787# the beginning of a bound
788proc gdb_test_escape_braces { args } {
789
790 set pattern [lindex $args 1]
791 regsub -all {\{[0-9]} $pattern {\\&} esc_pattern
792 gdb_test [lindex $args 0] $esc_pattern [lindex $args 2]
793}
794
0d63ecda
KS
795proc test_repeat_bytes {} {
796 set start(E) {}
797 set start(S) {a}
798 set start(L) {abaabbaaabbb}
799 set start(R) {'a' <repeats 20 times>}
800 set end(E) {}
801 set end(S) {c}
802 set end(L) {cdccddcccddd}
803 set end(R) {'c' <repeats 20 times>}
804 set invalid(S) {\\240}
805 set invalid(L) {\\240\\240\\240\\240}
806 set invalid(R) {'\\240' <repeats 20 times>}
807
808 set fmt(SSS) "\"%s%s%s\""
809 set fmt(SSR) "\"%s%s\", %s"
810 set fmt(SRS) "\"%s\", %s, \"%s\""
811 set fmt(RSS) "%s, \"%s%s\""
812 set fmt(RSR) "%s, \"%s\", %s"
813 set fmt(SRR) "\"%s\", %s, %s"
814 set fmt(RRS) "%s, %s, \"%s\""
815 set fmt(RRR) "%s, %s, %s"
816
817 set fmt(RS) "%s, \"%s\""
818 set fmt(RR) "%s, %s"
819 set fmt(SR) "\"%s\", %s"
820 set fmt(SS) "\"%s%s\""
821
822 # Test the various permutations of invalid characters
823 foreach i [array names invalid] {
824 set I $i
825
826 if {$i == "L"} {
827 set i "S"
828 }
829
830 foreach s [array names start] {
831 set S $s
832
833 if {$s == "L"} {
834 set s "S"
835 }
836
837
838 foreach e [array names end] {
839 set E $e
840
841 if {$e == "L"} {
842 set e "S"
843 }
844
845 # Skip E*E.
846 if {$s == "E" && $e == "E"} { continue }
847
848 # Special cases...
849 if {$s == "E"} {
850 set result [format $fmt($i$e) $invalid($I) $end($E)]
851 } elseif {$e == "E"} {
852 set result [format $fmt($s$i) $start($S) $invalid($I)]
853 } else {
854 set result [format $fmt($s$i$e) \
855 $start($S) $invalid($I) $end($E)]
856 }
857
858 send_log "expecting: = $result\n"
859 gdb_test "print invalid_$S$I$E" "= $result"
860 }
861 }
862 }
863}
864
c906108c
SS
865# Start with a fresh gdb.
866
867gdb_exit
868gdb_start
869gdb_reinitialize_dir $srcdir/$subdir
870
871gdb_test "print \$pc" "No registers\\."
63092375
DJ
872
873# Some simple operations on strings should work even without a target
874# (and therefore without calling malloc).
875gdb_test "print \"abc\"" " = \"abc\""
876gdb_test "print sizeof (\"abc\")" " = 4"
877gdb_test "ptype \"abc\"" " = char \\\[4\\\]"
878gdb_test "print \$cvar = \"abc\"" " = \"abc\""
879gdb_test "print sizeof (\$cvar)" " = 4"
c906108c 880
f572f0a9 881gdb_file_cmd ${binfile}
c906108c 882
63092375
DJ
883gdb_test "print \$pc" "No registers\\." "print \$pc (with file)"
884
27d3a1a2
MS
885gdb_test_no_output "set print sevenbit-strings"
886gdb_test_no_output "set print address off"
887gdb_test_no_output "set width 0"
c906108c 888
f1208f9e
DE
889if { [test_compiler_info "armcc-*"] } {
890 # ARM RealView compresses large arrays in the data segment.
891 # Before the program starts, we can not read them. There is
892 # nothing in the file to indicate that data is compressed.
893 setup_xfail "arm*-*-eabi"
894}
895gdb_test "p ctable1\[120\]" "120 'x'" "p ctable1\[120\] #1"
896
897gdb_load ${binfile}
898
899if ![runto_main] then {
900 fail "Can't run to main"
901 return 0
c906108c 902}
f1208f9e
DE
903
904test_integer_literals_accepted
905test_integer_literals_rejected
d30f5e1f
DE
906test_float_accepted
907test_float_rejected
f1208f9e
DE
908test_character_literals_accepted
909test_print_all_chars
910test_print_repeats_10
490f124f 911test_print_repeats_embedded_array
f1208f9e
DE
912test_print_strings
913test_print_int_arrays
914test_print_typedef_arrays
915test_artificial_arrays
916test_print_char_arrays
917# We used to do the runto main here.
918test_print_string_constants
919test_print_array_constants
920test_print_enums
921test_printf
922test_printf_with_dfp
9cb709b6 923test_print_symbol
0d63ecda 924test_repeat_bytes
This page took 1.289507 seconds and 4 git commands to generate.