X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Farray.pure.lisp;h=50f998727b3a405480c6801a69279576c30703d4;hb=41d85303c73124856e193aea2c15f4e8f5bb9ec8;hp=513a6d8b5cf964abe7357eb65481696b0ac47b6c;hpb=ad8ea88fc4ba8b05fbb1beb4d6bf5c883027714c;p=sbcl.git diff --git a/tests/array.pure.lisp b/tests/array.pure.lisp index 513a6d8..50f9987 100644 --- a/tests/array.pure.lisp +++ b/tests/array.pure.lisp @@ -79,3 +79,40 @@ (aref rmdr ,i))) vector) 0)))) + +;;; Following refactoring of sequence functions to detect bad type +;;; specifiers, REVERSE was left broken on vectors with fill pointers. +(let ((a (make-array 10 + :fill-pointer 5 + :element-type 'character + :initial-contents "abcdefghij"))) + (assert (string= (reverse a) "edcba"))) + +;;; ARRAY-IN-BOUNDS-P should work when given non-INDEXes as its +;;; subscripts (and return NIL, of course) +(let ((a (make-array 10 :fill-pointer 5))) + (assert (not (array-in-bounds-p a -1))) + (assert (array-in-bounds-p a 3)) + (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))