summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/chexp.exp
blob: 820ef8334b86057b9f2b8740d88baa3137d31ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
# Copyright 1992, 1994, 1995, 1998 Free Software Foundation, Inc.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  

# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@prep.ai.mit.edu

# This file was written by Fred Fish. (fnf@cygnus.com)

if $tracelevel then {
	strace $tracelevel
}

set prms_id 0
set bug_id 0

# Set the current language to chill.  This counts as a test.  If it
# fails, then we skip the other tests.

proc set_lang_chill {} {
    global gdb_prompt

    send_gdb "set language chill\n"
    gdb_expect {
	-re ".*$gdb_prompt $" {}
	timeout { fail "set language chill (timeout)" ; return 0 }
    }

    send_gdb "show language\n"
    gdb_expect {
	-re ".* source language is \"chill\".*$gdb_prompt $" {
	    pass "set language to \"chill\""
	    return 1
	}
	-re ".*$gdb_prompt $" {
	    fail "setting language to \"chill\""
	    return 0
	}
	timeout {
	    fail "can't show language (timeout)"
	    return 0
	}
    }
}

proc test_integer_literals_accepted {} {
    global gdb_prompt

    # Test various decimal values.

    gdb_test "p 123" " = 123"
    gdb_test "p -123" " = -123"
    gdb_test "p D'123" " = 123"
    gdb_test "p d'123" " = 123"
    gdb_test "p -D'123" " = -123"
    gdb_test "p -d'123" " = -123"
    gdb_test "p 12_345" " = 12345"
    gdb_test "p __1_2_3__" " = 123"
    gdb_test "p/d 123" " = D'123"

    # Test various binary values.

    gdb_test "p B'111" " = 7"
    gdb_test "p b'111" " = 7"
    gdb_test "p -B'111" " = -7"
    gdb_test "p B'0111" " = 7"
    gdb_test "p b'0111" " = 7"
    gdb_test "p -b'0111" " = -7"
    gdb_test "p B'_0_1_1_1_" " = 7"
    gdb_test "p b'_0_1_1_1_" " = 7"
    gdb_test "p -b'_0_1_1_1_" " = -7"
    gdb_test "p/t B'111" " = B'111"

    # Test various octal values.

    gdb_test "p O'123" " = 83"
    gdb_test "p o'123" " = 83"
    gdb_test "p -o'0123" " = -83"
    gdb_test "p O'0123" " = 83"
    gdb_test "p o'0123" " = 83"
    gdb_test "p -o'123" " = -83"
    gdb_test "p O'_1_2_3_" " = 83"
    gdb_test "p o'_1_2_3_" " = 83"
    gdb_test "p -o'_1_2_3_" " = -83"
    gdb_test "p/o O'123" " = O'123"

    # Test various hexadecimal values.

    gdb_test "p H'123" " = 291"
    gdb_test "p h'123" " = 291"
    gdb_test "p -h'123" " = -291"
    gdb_test "p H'0123" " = 291"
    gdb_test "p h'0123" " = 291"
    gdb_test "p -h'0123" " = -291"
    gdb_test "p H'_1_2_3_" " = 291"
    gdb_test "p h'_1_2_3_" " = 291"
    gdb_test "p -h'_1_2_3_" " = -291"
    gdb_test "p H'ABC" " = 2748"
    gdb_test "p H'abc" " = 2748"
    gdb_test "p H'AbC" " = 2748"
    gdb_test "p H'_A_b_C_" " = 2748"
    gdb_test "p H'_D_e_F_" " = 3567"
    gdb_test "p H'_d_E_f_" " = 3567"
    gdb_test "p/x H'123" " = H'123"
}

proc test_character_literals_accepted {} {
    global gdb_prompt

    # Test various decimal values.

    gdb_test "p 'a'" " = 'a'"
    gdb_test "p/x 'a'" " = H'61"
    gdb_test "p/d 'a'" " = D'97"
    gdb_test "p/t 'a'" " = B'1100001"
    # gdb_test "p '^(97)'" " = 'a'"	(not in GNU Chill)
    gdb_test "p C'61'" " = 'a'"
    gdb_test "p c'61'" " = 'a'"
    gdb_test "p/x C'FF'" " = H'ff"
    # gdb_test "p/x '^(H'FF)'" " = H'ff"	(not in GNU Chill)
    # gdb_test "p/x '^(D'255)'" " = H'ff"	(not in GNU Chill)
}

proc test_integer_literals_rejected {} {
    global gdb_prompt

    # These are valid integer literals in Z.200, but not GNU-Chill.

    test_print_reject "p _"
    test_print_reject "p __"

    test_print_reject "p D'" 
    test_print_reject "p D'_" 
    test_print_reject "p D'__" 

    test_print_reject "p B'" 
    test_print_reject "p B'_" 
    test_print_reject "p B'__" 

    test_print_reject "p O'" 
    test_print_reject "p O'_" 
    test_print_reject "p O'__" 

    test_print_reject "p H'" 
    test_print_reject "p H'_" 
    test_print_reject "p H'__" 

    # Test various decimal values.

    test_print_reject "p D'DEADBEEF"
    test_print_reject "p D'123DEADBEEF"

    # Test various binary values.

    test_print_reject "p B'2" "Too-large digit in bitstring or integer."
    test_print_reject "p B'12"  "Too-large digit in bitstring or integer."

    # Test various octal values.

    test_print_reject "p O'9"  "Too-large digit in bitstring or integer."
    test_print_reject "p O'79"  "Too-large digit in bitstring or integer."

    # Test various hexadecimal values.

    test_print_reject "p H'G" "Invalid character in bitstring or integer."
    test_print_reject "p H'AG" "Invalid character in bitstring or integer."
}

proc test_boolean_literals_accepted {} {
    global gdb_prompt

    # Test the only possible values for a boolean, TRUE and FALSE.

    gdb_test "p TRUE" " = TRUE"
    gdb_test "p FALSE" " = FALSE"
}

proc test_float_literals_accepted {} {
    global gdb_prompt

    # Test various floating point formats

    gdb_test "p .44 < .45" " = TRUE"
    gdb_test "p .44 > .45" " = FALSE"
    gdb_test "p 0.44 < 0.45" " = TRUE"
    gdb_test "p 0.44 > 0.45" " = FALSE"
    gdb_test "p 44. < 45." " = TRUE"
    gdb_test "p 44. > 45." " = FALSE"
    gdb_test "p 44.0 < 45.0" " = TRUE"
    gdb_test "p 44.0 > 45.0" " = FALSE"
    gdb_test "p 10D20 < 10D21" " = TRUE"
    gdb_test "p 10D20 > 10D21" " = FALSE"
    gdb_test "p 10d20 < 10d21" " = TRUE"
    gdb_test "p 10d20 > 10d21" " = FALSE"
    gdb_test "p 10E20 < 10E21" " = TRUE"
    gdb_test "p 10E20 > 10E21" " = FALSE"
    gdb_test "p 10e20 < 10e21" " = TRUE"
    gdb_test "p 10e20 > 10e21" " = FALSE"
    gdb_test "p 10.D20 < 10.D21" " = TRUE"
    gdb_test "p 10.D20 > 10.D21" " = FALSE"
    gdb_test "p 10.d20 < 10.d21" " = TRUE"
    gdb_test "p 10.d20 > 10.d21" " = FALSE"
    gdb_test "p 10.E20 < 10.E21" " = TRUE"
    gdb_test "p 10.E20 > 10.E21" " = FALSE"
    gdb_test "p 10.e20 < 10.e21" " = TRUE"
    gdb_test "p 10.e20 > 10.e21" " = FALSE"
    gdb_test "p 10.0D20 < 10.0D21" " = TRUE"
    gdb_test "p 10.0D20 > 10.0D21" " = FALSE"
    gdb_test "p 10.0d20 < 10.0d21" " = TRUE"
    gdb_test "p 10.0d20 > 10.0d21" " = FALSE"
    gdb_test "p 10.0E20 < 10.0E21" " = TRUE"
    gdb_test "p 10.0E20 > 10.0E21" " = FALSE"
    gdb_test "p 10.0e20 < 10.0e21" " = TRUE"
    gdb_test "p 10.0e20 > 10.0e21" " = FALSE"
    gdb_test "p 10.0D+20 < 10.0D+21" " = TRUE"
    gdb_test "p 10.0D+20 > 10.0D+21" " = FALSE"
    gdb_test "p 10.0d+20 < 10.0d+21" " = TRUE"
    gdb_test "p 10.0d+20 > 10.0d+21" " = FALSE"
    gdb_test "p 10.0E+20 < 10.0E+21" " = TRUE"
    gdb_test "p 10.0E+20 > 10.0E+21" " = FALSE"
    gdb_test "p 10.0e+20 < 10.0e+21" " = TRUE"
    gdb_test "p 10.0e+20 > 10.0e+21" " = FALSE"
    gdb_test "p 10.0D-11 < 10.0D-10" " = TRUE"
    gdb_test "p 10.0D-11 > 10.0D-10" " = FALSE"
    gdb_test "p 10.0d-11 < 10.0d-10" " = TRUE"
    gdb_test "p 10.0d-11 > 10.0d-10" " = FALSE"
    gdb_test "p 10.0E-11 < 10.0E-10" " = TRUE"
    gdb_test "p 10.0E-11 > 10.0E-10" " = FALSE"
    gdb_test "p 10.0e-11 < 10.0e-10" " = TRUE"
    gdb_test "p 10.0e-11 > 10.0e-10" " = FALSE"
    # looks funny, but apparently legal
    gdb_test "p _.1e+10 < _.1e+11" " = TRUE"
    gdb_test "p _.1e+10 > _.1e+11" " = FALSE"
    gdb_test "p __.1e-12 < __.1e-11" " = TRUE"
    gdb_test "p __.1e-12 > __.1e-11" " = FALSE"
}

proc test_convenience_variables {} {
    global gdb_prompt

    gdb_test "set \$foo := 101"	" := 101\[\r\]*" \
	"Set a new convenience variable"

    gdb_test "print \$foo"		" = 101" \
	"Print contents of new convenience variable"

    gdb_test "set \$foo := 301"	" := 301\[\r\]*" \
	"Set convenience variable to a new value"

    gdb_test "print \$foo"		" = 301" \
	"Print new contents of convenience variable"

    gdb_test "set \$_ := 11"		" := 11\[\r\]*" \
	"Set convenience variable \$_"

    gdb_test "print \$_"		" = 11" \
	"Print contents of convenience variable \$_"

    gdb_test "print \$foo + 10"	" = 311" \
	"Use convenience variable in arithmetic expression"

    gdb_test "print (\$foo := 32) + 4"	" = 36" \
	"Use convenience variable assignment in arithmetic expression"

    gdb_test "print \$bar"		" = void" \
	"Print contents of uninitialized convenience variable"
}

proc test_value_history {} {
    global gdb_prompt

    gdb_test "print 101"	"\\\$1 = 101" \
	"Set value-history\[1\] using \$1"

    gdb_test "print 102" 	"\\\$2 = 102" \
	"Set value-history\[2\] using \$2"

    gdb_test "print 103"	"\\\$3 = 103" \
	"Set value-history\[3\] using \$3"

    gdb_test "print \$\$"	"\\\$4 = 102" \
	"Print value-history\[MAX-1\] using inplicit index \$\$"

    gdb_test "print \$\$"	"\\\$5 = 103" \
	"Print value-history\[MAX-1\] again using implicit index \$\$"

    gdb_test "print \$"	"\\\$6 = 103" \
	"Print value-history\[MAX\] using implicit index \$"

    gdb_test "print \$\$2"	"\\\$7 = 102" \
	"Print value-history\[MAX-2\] using explicit index \$\$2"

    gdb_test "print \$0"	"\\\$8 = 102" \
	"Print value-history\[MAX\] using explicit index \$0"

    gdb_test "print 108"	"\\\$9 = 108" ""

    gdb_test "print \$\$0"	"\\\$10 = 108" \
	"Print value-history\[MAX\] using explicit index \$\$0"

    gdb_test "print \$1"	"\\\$11 = 101" \
	"Print value-history\[1\] using explicit index \$1"

    gdb_test "print \$2"	"\\\$12 = 102" \
	"Print value-history\[2\] using explicit index \$2"

    gdb_test "print \$3"	"\\\$13 = 103" \
	"Print value-history\[3\] using explicit index \$3"

    gdb_test "print \$-3"	"\\\$14 = 100" \
	"Print (value-history\[MAX\] - 3) using implicit index \$"

    gdb_test "print \$1 + 3"	"\\\$15 = 104" \
	"Use value-history element in arithmetic expression"
}

proc test_arithmetic_expressions {} {
    global gdb_prompt

    # Test unary minus with various operands

#    gdb_test "p -(TRUE)"	" = -1"	"unary minus applied to bool"
#    gdb_test "p -('a')"	" = xxx"	"unary minus applied to char"
    gdb_test "p -(1)"		" = -1"	"unary minus applied to int"
    gdb_test "p -(1.0)"	" = -1"	"unary minus applied to real"

    # Test addition with various operands

    gdb_test "p TRUE + 1"	" = 2"	"bool plus int"
    gdb_test "p 'a' + 1"	" = 98"	"char plus int"
    gdb_test "p 1 + 1"		" = 2"	"int plus int"
    gdb_test "p 1.0 + 1"	" = 2"	"real plus int"
    gdb_test "p 1.0 + 2.0"	" = 3"	"real plus real"

    # Test subtraction with various operands

    gdb_test "p TRUE - 1"	" = 0"	"bool minus int"
    gdb_test "p 'b' - 1"	" = 97"	"char minus int"
    gdb_test "p 3 - 1"		" = 2"	"int minus int"
    gdb_test "p 3.0 - 1"	" = 2"	"real minus int"
    gdb_test "p 5.0 - 2.0"	" = 3"	"real minus real"

    # Test multiplication with various operands

    gdb_test "p TRUE * 1"	" = 1"	"bool times int"
    gdb_test "p 'a' * 2"	" = 194"	"char times int"
    gdb_test "p 2 * 3"		" = 6"	"int times int"
    gdb_test "p 2.0 * 3"	" = 6"	"real times int"
    gdb_test "p 2.0 * 3.0"	" = 6"	"real times real"

    # Test division with various operands

    gdb_test "p TRUE / 1"	" = 1"	"bool divided by int"
    gdb_test "p 'a' / 2"	" = 48"	"char divided by int"
    gdb_test "p 6 / 3"		" = 2"	"int divided by int"
    gdb_test "p 6.0 / 3"	" = 2"	"real divided by int"
    gdb_test "p 6.0 / 3.0"	" = 2"	"real divided by real"

    # Test modulo with various operands

    gdb_test "p TRUE MOD 1"	" = 0"	"bool modulo int"
    gdb_test "p 'a' MOD 2"	" = 1"	"char modulo int"
    gdb_test "p -5 MOD 3"	" = 1"	"negative int modulo int"
    gdb_test "p 5 MOD 1"	" = 0"	"int modulo int"
    gdb_test "p 5 MOD 2"	" = 1"	"int modulo int"
    gdb_test "p 5 MOD 3"	" = 2"	"int modulo int"
    gdb_test "p 5 MOD 4"	" = 1"	"int modulo int"
    gdb_test "p 5 MOD 5"	" = 0"	"int modulo int"
    gdb_test "p 0 MOD 1"	" = 0"	"int modulo int"
    gdb_test "p 0 MOD 2"	" = 0"	"int modulo int"
    gdb_test "p 0 MOD 3"	" = 0"	"int modulo int"
    gdb_test "p 0 MOD 4"	" = 0"	"int modulo int"
    gdb_test "p -5 MOD 1"	" = 0"	"int modulo int"
    gdb_test "p -5 MOD 2"	" = 1"	"int modulo int"
    gdb_test "p -5 MOD 3"	" = 1"	"int modulo int"
    gdb_test "p -5 MOD 4"	" = 3"	"int modulo int"
    gdb_test "p -5 MOD 5"	" = 0"	"int modulo int"
    gdb_test "p -5 MOD 5"	" = 0"	"int modulo int"
    test_print_reject "p 6.0 MOD 3" \
	"Integer-only operation on floating point number.*"
    test_print_reject "p 6.0 MOD 3.0" \
	"Integer-only operation on floating point number.*"
    test_print_reject "p -5 MOD -1" \
	"Second operand of MOD must be greater than zero.*"
    test_print_reject "p -5 MOD 0" \
	"Second operand of MOD must be greater than zero.*"

    # Test remainder with various operands

    gdb_test "p TRUE REM 1"	" = 0"	"bool remainder int"
    gdb_test "p 'a' REM 2"	" = 1"	"char remainder int"
    gdb_test "p 5 REM 5"	" = 0"	"int remainder int"
    gdb_test "p 5 REM 4"	" = 1"	"int remainder int"
    gdb_test "p 5 REM 3"	" = 2"	"int remainder int"
    gdb_test "p 5 REM 2"	" = 1"	"int remainder int"
    gdb_test "p 5 REM 1"	" = 0"	"int remainder int"
    gdb_test "p 5 REM -1"	" = 0"	"int remainder int"
    gdb_test "p 5 REM -2"	" = 1"	"int remainder int"
    gdb_test "p 5 REM -3"	" = 2"	"int remainder int"
    gdb_test "p 5 REM -4"	" = 1"	"int remainder int"
    gdb_test "p 5 REM -5"	" = 0"	"int remainder int"
    gdb_test "p -5 REM 5"	" = 0"	"int remainder int"
    gdb_test "p -5 REM 4"	" = -1"	"int remainder int"
    gdb_test "p -5 REM 3"	" = -2"	"int remainder int"
    gdb_test "p -5 REM 2"	" = -1"	"int remainder int"
    gdb_test "p -5 REM 1"	" = 0"	"int remainder int"
    gdb_test "p -5 REM -1"	" = 0"	"int remainder int"
    gdb_test "p -5 REM -2"	" = -1"	"int remainder int"
    gdb_test "p -5 REM -3"	" = -2"	"int remainder int"
    gdb_test "p -5 REM -4"	" = -1"	"int remainder int"
    gdb_test "p -5 REM -5"	" = 0"	"int remainder int"
    gdb_test "p 6 REM 3"	" = 0"	"int remainder int"
    test_print_reject "p 6.0 REM 3" \
	"Integer-only operation on floating point number.*"
    test_print_reject "p 6.0 REM 3.0" \
	"Integer-only operation on floating point number.*"
}

# Start with a fresh gdb.

gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir

gdb_test "set print sevenbit-strings" ""

if [set_lang_chill] then {
    test_value_history
    test_convenience_variables
    test_integer_literals_accepted
    test_integer_literals_rejected
    test_boolean_literals_accepted
    test_character_literals_accepted
    test_float_literals_accepted
    test_arithmetic_expressions
} else {
    warning "$test_name tests suppressed." 0
}