forked from mwand/eopl3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-all.rkt
135 lines (90 loc) · 3.89 KB
/
test-all.rkt
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
#lang racket
;;; script to test all eopl interpreters
(require (prefix-in chapter3/let-lang/top.scm
"chapter3/let-lang/top.scm"))
(chapter3/let-lang/top.scmtest-all)
"chapter3/let-lang/top.scm"
(require (prefix-in chapter3/letrec-lang/top.scm
"chapter3/letrec-lang/top.scm"))
(chapter3/letrec-lang/top.scmtest-all)
"chapter3/letrec-lang/top.scm"
(require (prefix-in chapter3/lexaddr-lang/top.scm
"chapter3/lexaddr-lang/top.scm"))
(chapter3/lexaddr-lang/top.scmtest-all)
"chapter3/lexaddr-lang/top.scm"
(require (prefix-in chapter3/proc-lang/ds-rep/top.scm
"chapter3/proc-lang/ds-rep/top.scm"))
(chapter3/proc-lang/ds-rep/top.scmtest-all)
"chapter3/proc-lang/ds-rep/top.scm"
(require (prefix-in chapter3/proc-lang/proc-rep/top.scm
"chapter3/proc-lang/proc-rep/top.scm"))
(chapter3/proc-lang/proc-rep/top.scmtest-all)
"chapter3/proc-lang/proc-rep/top.scm"
(require (prefix-in chapter4/call-by-need/top.scm
"chapter4/call-by-need/top.scm"))
(chapter4/call-by-need/top.scmtest-all)
"chapter4/call-by-need/top.scm"
(require (prefix-in chapter4/call-by-reference/top.scm
"chapter4/call-by-reference/top.scm"))
(chapter4/call-by-reference/top.scmtest-all)
"chapter4/call-by-reference/top.scm"
(require (prefix-in chapter4/explicit-refs/top.scm
"chapter4/explicit-refs/top.scm"))
(chapter4/explicit-refs/top.scmtest-all)
"chapter4/explicit-refs/top.scm"
(require (prefix-in chapter4/implicit-refs/top.scm
"chapter4/implicit-refs/top.scm"))
(chapter4/implicit-refs/top.scmtest-all)
"chapter4/implicit-refs/top.scm"
(require (prefix-in chapter4/mutable-pairs/top.scm
"chapter4/mutable-pairs/top.scm"))
(chapter4/mutable-pairs/top.scmtest-all)
"chapter4/mutable-pairs/top.scm"
(require (prefix-in chapter5/exceptions/top.scm
"chapter5/exceptions/top.scm"))
(chapter5/exceptions/top.scmtest-all)
"chapter5/exceptions/top.scm"
;(require (prefix-in chapter5/letrec-lang/top.scm
; "chapter5/letrec-lang/top.scm"))
;(chapter5/letrec-lang/top.scmtest-all)
;"chapter5/letrec-lang/top.scm"
(require (prefix-in chapter5/thread-lang/top.scm
"chapter5/thread-lang/top.scm"))
(chapter5/thread-lang/top.scmtest-all)
"chapter5/thread-lang/top.scm"
(require (prefix-in chapter6/cps-lang/top.scm
"chapter6/cps-lang/top.scm"))
(chapter6/cps-lang/top.scmtest-all)
"chapter6/cps-lang/top.scm"
(require (prefix-in chapter6/cps-side-effects-lang/top.scm
"chapter6/cps-side-effects-lang/top.scm"))
(chapter6/cps-side-effects-lang/top.scmtest-all)
"chapter6/cps-side-effects-lang/top.scm"
(require (prefix-in chapter7/checked/top.scm
"chapter7/checked/top.scm"))
(chapter7/checked/top.scmtest-all)
"chapter7/checked/top.scm"
(require (prefix-in chapter7/inferred/top.scm
"chapter7/inferred/top.scm"))
(chapter7/inferred/top.scmtest-all)
"chapter7/inferred/top.scm"
(require (prefix-in chapter8/abstract-types-lang/top.scm
"chapter8/abstract-types-lang/top.scm"))
(chapter8/abstract-types-lang/top.scmtest-all)
"chapter8/abstract-types-lang/top.scm"
(require (prefix-in chapter8/full-system/top.scm
"chapter8/full-system/top.scm"))
(chapter8/full-system/top.scmtest-all)
"chapter8/full-system/top.scm"
(require (prefix-in chapter8/simplemodules/top.scm
"chapter8/simplemodules/top.scm"))
(chapter8/simplemodules/top.scmtest-all)
"chapter8/simplemodules/top.scm"
(require (prefix-in chapter9/classes/top.scm
"chapter9/classes/top.scm"))
(chapter9/classes/top.scmtest-all)
"chapter9/classes/top.scm"
(require (prefix-in chapter9/typed-oo/top.scm
"chapter9/typed-oo/top.scm"))
(chapter9/typed-oo/top.scmtest-all)
"chapter9/typed-oo/top.scm"