X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fprint.impure.lisp;h=5ab865c41499989ff6c05b4a00626f137f4f4592;hb=b894cb41d869bda6ba0c54a491becc7bb58375c1;hp=33f12aa488fe9852e5fd0a8414376fbb26592fa4;hpb=a00ea11a89c9db677e60edf6832c905a4527b5cb;p=sbcl.git diff --git a/tests/print.impure.lisp b/tests/print.impure.lisp index 33f12aa..5ab865c 100644 --- a/tests/print.impure.lisp +++ b/tests/print.impure.lisp @@ -579,4 +579,60 @@ (handler-bind ((print-not-readable #'sb-ext:print-unreadably)) (write-to-string (coerce "foo" 'base-string) :readably t))))) +(with-test (:name :printing-specialized-arrays-readably) + (let ((*read-eval* t) + (dimss (loop repeat 10 + collect (loop repeat (1+ (random 3)) + collect (1+ (random 10))))) + (props sb-vm::*specialized-array-element-type-properties*)) + (labels ((random-elt (type) + (case type + (base-char + (code-char (random 128))) + (character + (code-char (random char-code-limit))) + (single-float + (+ least-positive-normalized-single-float + (random most-positive-single-float))) + (double-float + (+ least-positive-normalized-double-float + (random most-positive-double-float))) + (bit + (random 2)) + (fixnum + (random most-positive-fixnum)) + ((t) + t) + (otherwise + (destructuring-bind (type x) type + (ecase type + (unsigned-byte + (random (1- (expt 2 x)))) + (signed-byte + (- (random (expt 2 (1- x))))) + (complex + (complex (random-elt x) (random-elt x))))))))) + (dotimes (i (length props)) + (let ((et (sb-vm::saetp-specifier (aref props i)))) + (when et + (when (eq 'base-char et) + ;; base-strings not included in the #. printing. + (go :next)) + (dolist (dims dimss) + (let ((a (make-array dims :element-type et))) + (assert (equal et (array-element-type a))) + (dotimes (i (array-total-size a)) + (setf (row-major-aref a i) (random-elt et))) + (let ((copy (read-from-string (write-to-string a :readably t)))) + (assert (equal dims (array-dimensions copy))) + (assert (equal et (array-element-type copy))) + (assert (equal (array-total-size a) (array-total-size copy))) + (dotimes (i (array-total-size a)) + (assert (equal (row-major-aref a i) (row-major-aref copy i))))))))) + :next)))) + +(with-test (:name (:format :negative-colinc-and-mincol)) + (assert (raises-error? (format nil "~-2a" 1))) + (assert (raises-error? (format nil "~,0a" 1)))) + ;;; success