X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Farray.pure.lisp;h=023e170317276a13b944ad786833eb9fa675d6ab;hb=1b650be8b800cf96e2c268ae317fb26d0bf36827;hp=1b7f9cdadc892ffae098c6a2dddd9a0c6d439e04;hpb=4bc9a2b01540f3a7cbf4499b4689b292fe406139;p=sbcl.git diff --git a/tests/array.pure.lisp b/tests/array.pure.lisp index 1b7f9cd..023e170 100644 --- a/tests/array.pure.lisp +++ b/tests/array.pure.lisp @@ -130,3 +130,18 @@ (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)))