X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fbit-vector.impure-cload.lisp;h=7809cc13ffb19968c90727f2de3d8207adea9dfd;hb=2fb5b174f6acb88a85c86aa4cd753ddefaccc987;hp=ac2b7b398a075f6a0d2b035fb11a8fa13d32d1c9;hpb=4898ef32c639b1c7f4ee13a5ba566ce6debd03e6;p=sbcl.git diff --git a/tests/bit-vector.impure-cload.lisp b/tests/bit-vector.impure-cload.lisp index ac2b7b3..7809cc1 100644 --- a/tests/bit-vector.impure-cload.lisp +++ b/tests/bit-vector.impure-cload.lisp @@ -69,14 +69,12 @@ (assert (= (aref a 0) 1)) (inform :aref-2) (assert (= (aref a (- array-dimension-limit 2)) 1)) - #-darwin - (progn - (inform :bit-and) - (bit-and a b a) - (inform :aref-3) - (assert (= (aref a 0) 0)) - (inform :aref-4) - (assert (= (aref a (- array-dimension-limit 2)) 0))))) + (inform :bit-and) + (bit-and a b a) + (inform :aref-3) + (assert (= (aref a 0) 0)) + (inform :aref-4) + (assert (= (aref a (- array-dimension-limit 2)) 0)))) (test-small-bit-vectors) @@ -84,6 +82,3 @@ ;; except on machines where addressable space is likely to be ;; much bigger than physical memory (test-big-bit-vectors) - -;;; success -(sb-ext:quit :unix-status 104)