X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Farray.pure.lisp;h=25d7bea59a10642cd0daaa3153dc3a948b1d5f00;hb=7abb9e44907ef12b52ac26d6482fbe21c036ee9b;hp=60eb661ff92f88731edf1697c70dc4d79867ec0f;hpb=a4573e20ce28626ca6926fe7879c46fa1c55c1b7;p=sbcl.git diff --git a/tests/array.pure.lisp b/tests/array.pure.lisp index 60eb661..25d7bea 100644 --- a/tests/array.pure.lisp +++ b/tests/array.pure.lisp @@ -138,6 +138,38 @@ ;; 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))) + +(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))) + +(let ((x (make-array nil :initial-element 'foo))) + (adjust-array x nil) + (assert (eql (aref x) 'foo))) + +;;; BUG 315: "no bounds check for access to displaced array" +;;; reported by Bruno Haible sbcl-devel "various SBCL bugs" from CLISP +;;; test suite. +(multiple-value-bind (val err) + (ignore-errors + (locally (declare (optimize (safety 3) (speed 0))) + (let* ((x (make-array 10 :fill-pointer 4 :element-type 'character + :initial-element #\space :adjustable t)) + (y (make-array 10 :fill-pointer 4 :element-type 'character + :displaced-to x))) + (adjust-array x '(5)) + (char y 5)))) + (assert (and (not val) (typep err 'sb-kernel:displaced-to-array-too-small-error))))