safepoint: Remove unused context argument.
[sbcl.git] / tests / wait-for.pure.lisp
blob0efbccfbe113df4118287e672b5523c74b52d954
1 (with-test (:name (:wait-for :basics))
2 (assert (not (sb-ext:wait-for nil :timeout 0.1)))
3 (assert (eql 42 (sb-ext:wait-for 42)))
4 (let ((n 0))
5 (assert (eql 100 (sb-ext:wait-for (when (= 100 (incf n))
6 n))))))