X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Farray.pure.lisp;h=50f998727b3a405480c6801a69279576c30703d4;hb=d76c81b0ca4dcfc99f0cd805f5c20493fa80b2b6;hp=2a8fac0ff109a02862d589c0dc4541329f45ff3e;hpb=c03cebe05df9c538f85d30aa5f22c5ca1f3a8283;p=sbcl.git diff --git a/tests/array.pure.lisp b/tests/array.pure.lisp index 2a8fac0..50f9987 100644 --- a/tests/array.pure.lisp +++ b/tests/array.pure.lisp @@ -96,3 +96,23 @@ (assert (array-in-bounds-p a 7)) (assert (not (array-in-bounds-p a 11))) (assert (not (array-in-bounds-p a (1+ most-positive-fixnum))))) + +;;; arrays of bits should work: +(let ((a (make-array '(10 10) :element-type 'bit :adjustable t))) + (setf (bit a 0 0) 1) + (assert (= (bit a 0 0) 1))) +(let ((a (make-array '(10 10) :element-type 'bit))) + (setf (sbit a 0 0) 1) + (assert (= (sbit a 0 0) 1))) + +(let ((x (copy-seq #*0011)) + (y (copy-seq #*0101))) + (assert (equalp (bit-and x y nil) #*0001))) + +;;; arrays of NIL should work, FSVO "work". +(let ((a (make-array '(10 10) :element-type 'nil))) + (assert (= (array-total-size a) 100)) + (assert (equal (array-dimensions a) '(10 10))) + (assert (eq (array-element-type a) 'nil))) + +(assert (eq (upgraded-array-element-type 'nil) 'nil))