1 USING: kernel math namespaces io tools.test sequences vectors
2 continuations debugger parser memory arrays words
3 kernel.private accessors eval ;
4 IN: continuations.tests
7 swap 1- tuck swap ?push
8 over 0 = [ "test-cc" get continue-with ] when
11 : callcc1-test ( x -- list )
13 "test-cc" set V{ } clone (callcc1-test)
16 : callcc-namespace-test ( -- ? )
21 6 "x" set "test-cc" get continue
23 ] callcc0 "x" get 5 = ;
25 [ t ] [ 10 callcc1-test 10 reverse >vector = ] unit-test
26 [ t ] [ callcc-namespace-test ] unit-test
28 [ 5 throw ] [ 5 = ] must-fail-with
31 [ "Hello" throw ] ignore-errors
36 "!!! The following error is part of the test" print
38 [ ] [ [ 6 [ 12 [ "2 car" ] ] ] print-error ] unit-test
40 "!!! The following error is part of the test" print
42 [ ] [ [ [ "2 car" ] eval ] try ] unit-test
48 [ "4" throw ] ignore-errors
53 [ f ] [ { } kernel-error? ] unit-test
54 [ f ] [ { "A" "B" } kernel-error? ] unit-test
56 ! ! See how well callstack overflow is handled
57 ! [ clear drop ] must-fail
59 ! : callstack-overflow callstack-overflow f ;
60 ! [ callstack-overflow ] must-fail
62 : don't-compile-me { } [ ] each ;
64 : foo callstack "c" set 3 don't-compile-me ;
67 [ 1 3 2 ] [ bar ] unit-test
69 [ t ] [ \ bar def>> "c" get innermost-frame-quot = ] unit-test
71 [ 1 ] [ "c" get innermost-frame-scan ] unit-test
73 SYMBOL: always-counter
80 [ ] [ always-counter inc ] [ error-counter inc ] cleanup
82 [ 1 ] [ always-counter get ] unit-test
83 [ 0 ] [ error-counter get ] unit-test
87 [ always-counter inc ]
88 [ error-counter inc ] cleanup
89 ] [ "a" = ] must-fail-with
91 [ 2 ] [ always-counter get ] unit-test
92 [ 1 ] [ error-counter get ] unit-test
96 [ always-counter inc "a" throw ]
97 [ error-counter inc ] cleanup
98 ] [ "a" = ] must-fail-with
100 [ 3 ] [ always-counter get ] unit-test
101 [ 1 ] [ error-counter get ] unit-test
104 [ ] [ [ return ] with-return ] unit-test
106 [ { } [ ] attempt-all ] [ attempt-all-error? ] must-fail-with
108 [ { 4 } ] [ { 2 2 } [ + ] with-datastack ] unit-test
110 \ with-datastack must-infer