X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Finterface.pure.lisp;h=74ce1e028a888e15664cd24e2cf8b878ddc4c84c;hb=d8422b9967f465801891907396bcc5bfde0f3297;hp=5957ce000a0869ebe9c64d793d4b895d9109cf14;hpb=f9663e4a4c35614fcba5812882f9ed812cbcf62d;p=sbcl.git diff --git a/tests/interface.pure.lisp b/tests/interface.pure.lisp index 5957ce0..74ce1e0 100644 --- a/tests/interface.pure.lisp +++ b/tests/interface.pure.lisp @@ -61,14 +61,14 @@ (assert (not (special-operator-p 'declare))) ;;; WITH-TIMEOUT should accept more than one form in its body. -(with-test (:name :with-timeout-forms :fails-on :win32) +(with-test (:name :with-timeout-forms) (handler-bind ((sb-ext:timeout #'continue)) (sb-ext:with-timeout 3 (sleep 2) (sleep 2)))) ;;; SLEEP should not cons -(with-test (:name (sleep :non-consing) :fails-on '(not :x86-64)) +(with-test (:name (sleep :non-consing) :fails-on '(or (not :x86-64) :win32)) (ctu:assert-no-consing (sleep 0.00001))) ;;; SLEEP should work with large integers as well -- no timers