X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Farray.pure.lisp;h=3eafab5c90ac0c93edddb8e7a55f0f6cf56c8214;hb=4ed3f0d08c3a57a6762018d9622f253ab9d0f2b6;hp=21b5b69a0aa41aa3aea0038b20c9e5958f908296;hpb=27b8aecceb0faecf64fcc8b90392373461b01c30;p=sbcl.git diff --git a/tests/array.pure.lisp b/tests/array.pure.lisp index 21b5b69..3eafab5 100644 --- a/tests/array.pure.lisp +++ b/tests/array.pure.lisp @@ -127,3 +127,31 @@ (assert fail) (assert (raises-error? (funcall fun) type-error))) +(multiple-value-bind (fun warn fail) + (compile nil '(lambda () (make-array 5 :element-type 'undefined-type))) + (assert warn)) + +(flet ((opaque-identity (x) x)) + (declare (notinline opaque-identity)) + ;; we used to have leakage from cross-compilation hosts of the INDEX + ;; type, which prevented us from actually using all the large array + ;; dimensions that we promised. Let's make sure that we can create + ;; an array with more than 2^24 elements, since that was a symptom + ;; from the CLISP and OpenMCL hosts. + (let ((big-array (opaque-identity + (make-array (expt 2 26) :element-type 'bit)))) + (assert (= (length big-array) (expt 2 26))))) + +;;; Bug reported by Kalle Olavi Niemitalo for CMUCL through Debian BTS +(let ((array (make-array nil :initial-contents nil))) + (assert (eql (aref array) nil))) + +(let ((f (compile nil '(lambda () + (let ((a (make-array '(4) + :element-type 'base-char + :initial-element #\z))) + (setf (aref a 0) #\a) + (setf (aref a 1) #\b) + (setf (aref a 2) #\c) + a))))) + (assert (= (length (funcall f)) 4)))