X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Farray.pure.lisp;h=60eb661ff92f88731edf1697c70dc4d79867ec0f;hb=d4e550ede8beccef4312e621a644b89f9d76f74d;hp=50f998727b3a405480c6801a69279576c30703d4;hpb=2db3b6b4cb740d5b6512459c223859f747807b09;p=sbcl.git diff --git a/tests/array.pure.lisp b/tests/array.pure.lisp index 50f9987..60eb661 100644 --- a/tests/array.pure.lisp +++ b/tests/array.pure.lisp @@ -116,3 +116,28 @@ (assert (eq (array-element-type a) 'nil))) (assert (eq (upgraded-array-element-type 'nil) 'nil)) + +(multiple-value-bind (fun warn fail) + (compile nil '(lambda () (aref (make-array 0) 0))) + #+nil (assert fail) ; doesn't work, (maybe because ASSERTED-TYPE is NIL?) + (assert (raises-error? (funcall fun) type-error))) + +(multiple-value-bind (fun warn fail) + (compile nil '(lambda () (aref (make-array 1) 1))) + (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))))) \ No newline at end of file