factor/core/threads/threads-tests.factor

13 lines
298 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
USING: namespaces io tools.test threads kernel ;
IN: temporary
3 "x" set
[ yield 2 "x" set ] in-thread
[ 2 ] [ yield "x" get ] unit-test
[ ] [ [ flush ] in-thread flush ] unit-test
[ ] [ [ "Errors, errors" throw ] in-thread ] unit-test
yield
[ ] [ 0.3 sleep ] unit-test
[ "hey" sleep ] must-fail