X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Finterface.pure.lisp;h=5957ce000a0869ebe9c64d793d4b895d9109cf14;hb=6d9e2243954872457115bbb9ac1ecb1d161acced;hp=d7f1835584927eb5be9586649f2e22d38ed40271;hpb=567588a0316e6202e5158b8a9ff773b9e6d03762;p=sbcl.git diff --git a/tests/interface.pure.lisp b/tests/interface.pure.lisp index d7f1835..5957ce0 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) +(with-test (:name :with-timeout-forms :fails-on :win32) (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)) +(with-test (:name (sleep :non-consing) :fails-on '(not :x86-64)) (ctu:assert-no-consing (sleep 0.00001))) ;;; SLEEP should work with large integers as well -- no timers