From: Taylor R Campbell Date: Sun, 18 Nov 2018 03:29:10 +0000 (+0000) Subject: Test without the sf fakeout, xfail for now. X-Git-Tag: mit-scheme-pucked-10.1.2~16^2~41 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=b2f2f769f87d6f7c3c76fd2fd5cf328779bd3aa9;p=mit-scheme.git Test without the sf fakeout, xfail for now. --- diff --git a/tests/runtime/test-arith.scm b/tests/runtime/test-arith.scm index e062d8def..fdb949b1f 100644 --- a/tests/runtime/test-arith.scm +++ b/tests/runtime/test-arith.scm @@ -136,13 +136,17 @@ USA. (assert-false (= x (flo:nan.0))) (assert-false (< x (flo:nan.0))) (assert-false ((id >=) x (flo:nan.0))) + (expect-failure (lambda () (assert-false (>= x (flo:nan.0))))) (assert-false (> x (flo:nan.0))) (assert-false ((id <=) x (flo:nan.0))) + (expect-failure (lambda () (assert-false (<= x (flo:nan.0))))) (assert-false (= (flo:nan.0) x)) (assert-false (< (flo:nan.0) x)) (assert-false ((id >=) (flo:nan.0) x)) + (expect-failure (lambda () (assert-false (>= (flo:nan.0) x)))) (assert-false (> (flo:nan.0) x)) - (assert-false ((id <=) (flo:nan.0) x))))) + (assert-false ((id <=) (flo:nan.0) x)) + (expect-failure (lambda () (assert-false (<= (flo:nan.0) x))))))) (define-enumerated-test 'inf*0-exact (vector (list 0 (flo:+inf.0))