X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Farray.pure.lisp;h=023e170317276a13b944ad786833eb9fa675d6ab;hb=6b7b0266343826426a3efffa3b8b8d4d552f8f97;hp=60eb661ff92f88731edf1697c70dc4d79867ec0f;hpb=a4573e20ce28626ca6926fe7879c46fa1c55c1b7;p=sbcl.git diff --git a/tests/array.pure.lisp b/tests/array.pure.lisp index 60eb661..023e170 100644 --- a/tests/array.pure.lisp +++ b/tests/array.pure.lisp @@ -138,6 +138,10 @@ ;; 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 + (let ((big-array (opaque-identity (make-array (expt 2 26) :element-type 'bit)))) - (assert (= (length big-array) (expt 2 26))))) \ No newline at end of file + (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)))