]> gitweb.factorcode.org Git - factor.git/blob - core/kernel/kernel-tests.factor
VM: fix one callstack overflow problem by "unlocking" the callstacks
[factor.git] / core / kernel / kernel-tests.factor
1 USING: arrays byte-arrays kernel kernel.private literals math
2 memory namespaces sequences tools.test math.private quotations
3 continuations prettyprint io.streams.string debugger assocs
4 sequences.private accessors locals.backend grouping words
5 system alien alien.accessors kernel.private ;
6 IN: kernel.tests
7
8 { 0 } [ f size ] unit-test
9 { t } [ [ \ = \ = ] all-equal? ] unit-test
10
11 {
12     {
13         { 1 2 0 }
14         { 1 2 1 }
15         { 1 2 2 }
16         { 1 2 3 }
17         { 1 2 4 }
18         { 1 2 5 }
19         { 1 2 6 }
20         { 1 2 7 }
21         { 1 2 8 }
22         { 1 2 9 }
23     }
24 } [ 1 2 10 iota [ 3array ] 2with map ] unit-test
25
26 ! Don't leak extra roots if error is thrown
27 { } [ 1000 [ [ 3 throw ] ignore-errors ] times ] unit-test
28
29 { } [ 1000 [ [ -1 f <array> ] ignore-errors ] times ] unit-test
30
31 ! Make sure we report the correct error on stack underflow
32 [ clear drop ] [
33     2 head ${ "kernel-error" ERROR-DATASTACK-UNDERFLOW } =
34 ] must-fail-with
35
36 { } [ :c ] unit-test
37
38 [
39     3 [ { } set-retainstack ] dip ]
40     [ 2 head ${ "kernel-error" ERROR-RETAINSTACK-UNDERFLOW } =
41 ] must-fail-with
42
43 { } [ :c ] unit-test
44
45 : overflow-d ( -- ) 3 overflow-d ;
46
47 : (overflow-d-alt) ( -- n ) 3 ;
48
49 : overflow-d-alt ( -- ) (overflow-d-alt) overflow-d-alt ;
50
51 : overflow-r ( -- ) 3 load-local overflow-r ;
52
53 <<
54 { overflow-d (overflow-d-alt) overflow-d-alt overflow-r }
55 [ t "no-compile" set-word-prop ] each
56 >>
57
58 [ overflow-d ] [
59     2 head ${ "kernel-error" ERROR-DATASTACK-OVERFLOW } =
60 ] must-fail-with
61
62 { } [ :c ] unit-test
63
64 [ overflow-d-alt ] [
65     2 head ${ "kernel-error" ERROR-DATASTACK-OVERFLOW } =
66 ] must-fail-with
67
68 { } [ [ :c ] with-string-writer drop ] unit-test
69
70 [ overflow-r ] [
71     2 head ${ "kernel-error" ERROR-RETAINSTACK-OVERFLOW } =
72 ] must-fail-with
73
74 { } [ :c ] unit-test
75
76 [ -7 <byte-array> ] must-fail
77
78 { 3 } [ t 3 and ] unit-test
79 { f } [ f 3 and ] unit-test
80 { f } [ 3 f and ] unit-test
81 { 4 } [ 4 6 or ] unit-test
82 { 6 } [ f 6 or ] unit-test
83 { f } [ 1 2 xor ] unit-test
84 { 1 } [ 1 f xor ] unit-test
85 { 2 } [ f 2 xor ] unit-test
86 { f } [ f f xor ] unit-test
87
88 [ dip ] must-fail
89 { } [ :c ] unit-test
90
91 [ 1 [ call ] dip ] must-fail
92 { } [ :c ] unit-test
93
94 [ 1 2 [ call ] dip ] must-fail
95 { } [ :c ] unit-test
96
97 { 5 } [ 1 [ 2 2 + ] dip + ] unit-test
98
99 [ [ ] keep ] must-fail
100
101 { 6 } [ 2 [ sq ] keep + ] unit-test
102
103 [ [ ] 2keep ] must-fail
104 [ 1 [ ] 2keep ] must-fail
105 { 3 1 2 } [ 1 2 [ 2drop 3 ] 2keep ] unit-test
106
107 { 0 } [ f [ sq ] [ 0 ] if* ] unit-test
108 { 4 } [ 2 [ sq ] [ 0 ] if* ] unit-test
109
110 { 0 } [ f [ 0 ] unless* ] unit-test
111 { t } [ t [ "Hello" ] unless* ] unit-test
112
113 { "2\n" } [ [ 1 2 [ . ] [ sq . ] ?if ] with-string-writer ] unit-test
114 { "9\n" } [ [ 3 f [ . ] [ sq . ] ?if ] with-string-writer ] unit-test
115
116 { f } [ f (clone) ] unit-test
117 { -123 } [ -123 (clone) ] unit-test
118
119 { 6 2 } [ 1 2 [ 5 + ] dip ] unit-test
120
121 { } [ get-callstack set-callstack ] unit-test
122
123 [ 3drop get-datastack ] must-fail
124 { } [ :c ] unit-test
125
126 ! Doesn't compile; important
127 : foo ( a -- b ) ;
128
129 << \ foo t "no-compile" set-word-prop >>
130
131 [ drop foo ] must-fail
132 { } [ :c ] unit-test
133
134 ! Regression
135 : (loop) ( a b c d -- )
136     [ pick ] dip swap [ pick ] dip swap
137     < [ [ 1 + ] 3dip (loop) ] [ 4drop ] if ; inline recursive
138
139 : loop ( obj -- )
140     H{ } values swap [ dup length swap ] dip [ 0 ] 3dip (loop) ;
141
142 [ loop ] must-fail
143
144 ! Discovered on Windows
145 : total-failure-1 ( -- a ) "" [ ] map unimplemented ;
146
147 [ total-failure-1 ] must-fail
148
149 { 1 1 2 2 3 3 } [ 1 2 3 [ dup ] tri@ ] unit-test
150 { 1 4 9 } [ 1 2 3 [ sq ] tri@ ] unit-test
151 [ [ sq ] tri@ ] must-infer
152
153 { 4 } [ 1 { [ 1 ] [ 2 ] } dispatch sq ] unit-test
154
155 ! Test traceback accuracy
156 : last-frame ( -- pair )
157     error-continuation get call>> callstack>array 6 head* 3 tail* ;
158
159 {
160     { [ 1 2 [ 3 throw ] call 4 ] [ 1 2 [ 3 throw ] call 4 ] 3 }
161 } [
162     [ [ 1 2 [ 3 throw ] call 4 ] call ] ignore-errors
163     last-frame
164 ] unit-test
165
166 {
167     { [ 1 2 [ 3 throw ] dip 4 ] [ 1 2 [ 3 throw ] dip 4 ] 3 }
168 } [
169     [ [ 1 2 [ 3 throw ] dip 4 ] call ] ignore-errors
170     last-frame
171 ] unit-test
172
173 {
174     { [ 1 2 3 throw [ ] call 4 ] [ 1 2 3 throw [ ] call 4 ] 3 }
175 } [
176     [ [ 1 2 3 throw [ ] call 4 ] call ] ignore-errors
177     last-frame
178 ] unit-test
179
180 {
181     { [ 1 2 3 throw [ ] dip 4 ] [ 1 2 3 throw [ ] dip 4 ] 3 }
182 } [
183     [ [ 1 2 3 throw [ ] dip 4 ] call ] ignore-errors
184     last-frame
185 ] unit-test
186
187 {
188     { [ 1 2 3 throw [ ] [ ] if 4 ] [ 1 2 3 throw [ ] [ ] if 4 ] 3 }
189 } [
190     [ [ 1 2 3 throw [ ] [ ] if 4 ] call ] ignore-errors
191     last-frame
192 ] unit-test
193
194 { 10 2 3 4 5 } [ 1 2 3 4 5 [ 10 * ] 4dip ] unit-test
195
196 { 3 -1 5/6 } [ 1 2 3 4 5 6 [ + ] [ - ] [ / ] 2tri* ] unit-test
197
198 { { 1 2 } { 3 4 } { 5 6 } } [ 1 2 3 4 5 6 [ 2array ] 2tri@ ] unit-test
199
200 { t } [ { } identity-hashcode fixnum? ] unit-test
201 { 123 } [ 123 identity-hashcode ] unit-test
202 { t } [ f identity-hashcode fixnum? ] unit-test
203
204 ! Make sure memory protection faults work
205 [ f 0 alien-unsigned-1 ] [ vm-error? ] must-fail-with
206 [ 1 <alien> 0 alien-unsigned-1 ] [ vm-error? ] must-fail-with
207
208 { 1 2 3 1 2 3 } [ 1 2 3 3dup ] unit-test
209 { 1 2 3 4 1 2 3 4 } [ 1 2 3 4 4dup ] unit-test