File: me_cpu.testsuite

package info (click to toggle)
tcllib 2.0%2Bdfsg-4
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 83,572 kB
  • sloc: tcl: 306,798; ansic: 14,272; sh: 3,035; xml: 1,766; yacc: 1,157; pascal: 881; makefile: 124; perl: 84; f90: 84; python: 33; ruby: 13; php: 11
file content (445 lines) | stat: -rw-r--r-- 12,401 bytes parent folder | download | duplicates (10)
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
# -*- tcl -*- me_cpu.test
# ### ### ### ######### ######### #########

# ### ### ### ######### ######### #########
## Cpu creation.

test me-cpu-new-${impl}-1.0 {new, wrong args} -body {
    grammar::me::cpu cpu
} -result {Error in constructor: wrong # args: should be "::grammar::me::cpu::Snit_constructor type selfns win self code_"} \
  -returnCodes error

test me-cpu-new-${impl}-1.1 {new, wrong args} -body {
    grammar::me::cpu cpu a b
} -result {Error in constructor: wrong # args: should be "::grammar::me::cpu::Snit_constructor type selfns win self code_"} \
  -returnCodes error

test me-cpu-run-${impl}-2.0 run -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu run
} -cleanup {
    cpu destroy
} -returnCodes error -result {No instructions to execute}

set n -1
foreach {cmd cargs expected} $asm_table {
    set asm [list [linsert $cargs 0 branchlabel $cmd]]
    incr n

    test me-cpu-new-${impl}-3.$n "new, $cmd, code" -body {
	grammar::me::cpu cpu \
		[canon_code [grammar::me::cpu::core::asm $asm]]
	cpu code
    } -cleanup {
	cpu destroy
    } -result $expected

    test me-cpu-new-${impl}-4.$n "new, $cmd, state" -body {
	grammar::me::cpu cpu \
		[canon_code [grammar::me::cpu::core::asm $asm]]
	cpusubst [cpustate cpu] cd {}
    } -cleanup {
	cpu destroy
    } -result {cd {} pc 0 ht 0 eo 0 tc {} at -1 cc {} ok 0 sv {} er {} ls {} as {} ms {} es {} rs {} nc {}}
}

set n -1
foreach {insns expected} $badmach_table {
    incr n

    test me-cpu-new-${impl}-5.$n "new error" -body {
	grammar::me::cpu cpu $insns
    } -result "Error in constructor: $expected" -returnCodes error
}

# ### ### ### ######### ######### #########
## CPU manipulation - Add tokens I

test me-cpu-put-${impl}-1.0 {put, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu put
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitWrongNumArgs cpu ::grammar::me::cpu::Snit_methodput {tok lex line col} 0]

test me-cpu-put-${impl}-1.1 {put, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu put a
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitWrongNumArgs cpu ::grammar::me::cpu::Snit_methodput {tok lex line col} 1]

test me-cpu-put-${impl}-1.2 {put, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu put a b
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitWrongNumArgs cpu ::grammar::me::cpu::Snit_methodput {tok lex line col} 2]

test me-cpu-put-${impl}-1.3 {put, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu put a b c
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitWrongNumArgs cpu ::grammar::me::cpu::Snit_methodput {tok lex line col} 3]

test me-cpu-put-${impl}-1.4 {put, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu put a b c d e
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitTooManyArgs cpu ::grammar::me::cpu::Snit_methodput {tok lex line col}]

test me-cpu-put-${impl}-2.0 put -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    set base [cpustate cpu]
} -body {
    cpu put ID  ident 1 0
    cpu put NUM 12345 1 5
    cpudelta $base [cpustate cpu]
} -cleanup {
    cpu destroy
    unset base
} -result {tc {{ID ident 1 0} {NUM 12345 1 5}}}

test me-cpu-put-${impl}-3.0 {put after eof} -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu eof
} -body {
    cpu put ID ident 1 0
} -returnCodes error -cleanup {
    cpu destroy
} -result {Cannot add input data after eof}


# ### ### ### ######### ######### #########
## CPU manipulation - Add tokens II

test me-cpu-putstring-${impl}-1.0 {putstring, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu putstring
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitWrongNumArgs cpu ::grammar::me::cpu::Snit_methodputstring {str lvar cvar} 0]

test me-cpu-putstring-${impl}-1.1 {putstring, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu putstring a
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitWrongNumArgs cpu ::grammar::me::cpu::Snit_methodputstring {str lvar cvar} 1]

test me-cpu-putstring-${impl}-1.2 {putstring, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu putstring a b
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitWrongNumArgs cpu ::grammar::me::cpu::Snit_methodputstring {str lvar cvar} 2]

test me-cpu-putstring-${impl}-1.3 {putstring, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu putstring a b c d
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitTooManyArgs cpu ::grammar::me::cpu::Snit_methodputstring {str lvar cvar}]

test me-cpu-putstring-${impl}-2.0 put -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    set base [cpustate cpu]
    set l 0
    set c 0
} -body {
    cpu putstring ID l c
    list $l $c [cpudelta $base [cpustate cpu]]
} -cleanup {
    cpu destroy
    unset base
} -result {0 2 {tc {{I {} 0 0} {D {} 0 1}}}}

test me-cpu-putstring-${impl}-3.0 {put after eof} -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu eof
    set l 0
    set c 0
} -body {
    cpu putstring ID l c
} -returnCodes error -cleanup {
    cpu destroy
} -result {Cannot add input data after eof}

# ### ### ### ######### ######### #########
## State manipulation - Set eof

test me-cpu-eof-${impl}-1.0 {eof, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu eof x
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitTooManyArgs cpu ::grammar::me::cpu::Snit_methodeof {}]

test me-cpu-eof-${impl}-2.0 eof -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    set base [cpustate cpu]
} -body {
    cpu eof
    cpudelta $base [cpustate cpu]
} -cleanup {
    cpu destroy
} -result {eo 1}

# ### ### ### ######### ######### #########
## State accessors - line/col retrieval

test me-cpu-lc-${impl}-1.0 {lc, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu lc
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitWrongNumArgs cpu ::grammar::me::cpu::Snit_methodlc {location} 0]

test me-cpu-lc-${impl}-1.1 {lc, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu lc a b
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitTooManyArgs cpu ::grammar::me::cpu::Snit_methodlc {location}]

test me-cpu-lc-${impl}-2.0 lc -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu lc 0
} -cleanup {
    cpu destroy
} -result {1 5}

test me-cpu-lc-${impl}-3.0 {lc, bad index} -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu lc -1
} -returnCodes error -cleanup {
    cpu destroy
} -result {Illegal location -1}

test me-cpu-lc-${impl}-3.1 {lc, bad index} -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu lc 1
} -returnCodes error -cleanup {
    cpu destroy
} -result {Illegal location 1}

test me-cpu-lc-${impl}-3.2 {lc, bad index} -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
} -body {
    cpu lc 0
} -returnCodes error -cleanup {
    cpu destroy
} -result {Illegal location 0}

# ### ### ### ######### ######### #########
## State accessors - Token retrieval

test me-cpu-tok-${impl}-1.0 {tok, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu tok a b c
} -returnCodes error -cleanup {
    cpu destroy
} -result {wrong # args: should be "grammar::me::cpu::core::tok state ?from ?to??"}

test me-cpu-tok-${impl}-2.0 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
} -body {
    cpu tok
} -cleanup {
    cpu destroy
} -result {}

test me-cpu-tok-${impl}-2.1 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu tok
} -cleanup {
    cpu destroy
} -result {{NUM 12345 1 5}}

test me-cpu-tok-${impl}-2.2 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put ID  lalal 0 0
    cpu put NUM 12345 1 5
} -body {
    cpu tok
} -cleanup {
    cpu destroy
} -result {{ID lalal 0 0} {NUM 12345 1 5}}

test me-cpu-tok-${impl}-3.0 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
} -body {
    cpu tok 0
} -cleanup {
    cpu destroy
} -result {Illegal location 0} -returnCodes error

test me-cpu-tok-${impl}-3.1 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu tok -1
} -cleanup {
    cpu destroy
} -result {Illegal location -1} -returnCodes error

test me-cpu-tok-${impl}-3.2 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu tok 1
} -cleanup {
    cpu destroy
} -result {Illegal location 1} -returnCodes error

test me-cpu-tok-${impl}-3.3 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu tok 0
} -cleanup {
    cpu destroy
} -result {{NUM 12345 1 5}}

test me-cpu-tok-${impl}-3.4 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put ID  lalal 0 0
    cpu put NUM 12345 1 5
} -body {
    cpu tok 0
} -cleanup {
    cpu destroy
} -result {{ID lalal 0 0}}

test me-cpu-tok-${impl}-4.0 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu tok -1 0
} -cleanup {
    cpu destroy
} -result {Illegal start location -1} -returnCodes error

test me-cpu-tok-${impl}-4.1 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu tok 1 0
} -cleanup {
    cpu destroy
} -result {Illegal start location 1} -returnCodes error

test me-cpu-tok-${impl}-4.2 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu tok 0 -1
} -cleanup {
    cpu destroy
} -result {Illegal end location -1} -returnCodes error

test me-cpu-tok-${impl}-4.3 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put NUM 12345 1 5
} -body {
    cpu tok 0 1
} -cleanup {
    cpu destroy
} -result {Illegal end location 1} -returnCodes error

test me-cpu-tok-${impl}-4.4 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put ID  lalal 0 0
    cpu put NUM 12345 1 5
} -body {
    cpu tok 1 0
} -cleanup {
    cpu destroy
} -result {Illegal empty location range 1 .. 0} -returnCodes error

test me-cpu-tok-${impl}-4.5 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put ID  lalal 0 0
    cpu put NUM 12345 1 5
} -body {
    cpu tok 0 1
} -cleanup {
    cpu destroy
} -result {{ID lalal 0 0} {NUM 12345 1 5}}

test me-cpu-tok-${impl}-4.6 tok -setup {
    grammar::me::cpu cpu [canon_code [grammar::me::cpu::core::asm {}]]
    cpu put ID  lalal 0 0
    cpu put ID  lalal 0 0
} -body {
    cpu tok 0 0
} -cleanup {
    cpu destroy
} -result {{ID lalal 0 0}}

# ### ### ### ######### ######### #########
## Checking the instruction semantics

test me-cpu-run-${impl}-1.0 {run, wrong args} -setup {
    grammar::me::cpu cpu {{} {} {}}
} -body {
    cpu run a b
} -returnCodes error -cleanup {
    cpu destroy
} -result [snitTooManyArgs cpu ::grammar::me::cpu::Snit_methodrun {?n?}]

set n -1
foreach {description input eof stepsSetup steps code expectedDelta} $semantics {
    incr n

    if 0 {
	puts ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	puts $description
	puts "INPUT $input"
	puts "EOF   $eof"
	puts "CODE  $stepsSetup $steps $code"
	puts $expectedDelta
    }

    test me-cpu-run-${impl}-2.$n "run $description" -setup {
	grammar::me::cpu cpu $code
	foreach token $input {
	    eval [linsert $token 0 cpu put]
	    # cpu put {*}$token
	}
	if {$eof}        {cpu eof}
	if {$stepsSetup} {cpu run $stepsSetup}
	set save [cpustate cpu]
    } -body {
	cpu run $steps
	cpudelta $save [cpustate cpu]
    } -cleanup {
	cpu destroy
    } -result $expectedDelta
}

return