X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Finterface.impure.lisp;h=31cb5171528a5ac599b66cd6dcd2824a031e4da0;hb=de3bfc084239fa962ef001eaa68e5b6f4b9bbf81;hp=33f7886cf922a78672dced9e2ed6d2a4a00dc6d9;hpb=408ed62925d643c163f0e9fc7b3fd41cce65fbea;p=sbcl.git diff --git a/tests/interface.impure.lisp b/tests/interface.impure.lisp index 33f7886..31cb517 100644 --- a/tests/interface.impure.lisp +++ b/tests/interface.impure.lisp @@ -265,12 +265,37 @@ (setf (documentation 'bug-643958-test 'function) "bar") (assert (equal "bar" (documentation 'bug-643958-test 'function)))) -(with-test (:name :bug-881445 - :skipped-on '(not :x86-64)) - (let ((x (make-array (1- (expt 2 32)) :element-type '(unsigned-byte 8)))) - (assert (> (sb-kernel:dynamic-usage) (length x))) - ;; prevent compiler from getting too smart... - (eval x) - t)) +(defclass cannot-print-this () + ()) +(defmethod print-object ((oops cannot-print-this) stream) + (error "No go!")) +(with-test (:name :describe-suppresses-print-errors) + (handler-bind ((error #'continue)) + (with-output-to-string (s) + (describe (make-instance 'cannot-print-this) s)))) +(with-test (:name :backtrace-suppresses-print-errors) + (handler-bind ((error #'continue)) + (with-output-to-string (s) + (labels ((foo (n x) + (when (plusp n) + (foo (1- n) x)) + (when (zerop n) + (sb-debug:backtrace 100 s)))) + (foo 100 (make-instance 'cannot-print-this)))))) +(with-test (:name :backtrace-and-circles) + (handler-bind ((error #'continue)) + (with-output-to-string (s) + (labels ((foo (n x) + (when (plusp n) + (foo (1- n) x)) + (when (zerop n) + (sb-debug:backtrace 100 s)))) + (foo 100 (let ((list (list t))) + (nconc list list))))))) + +(with-test (:name :endianness-in-features) + (assert + (or (member :big-endian *features*) + (member :little-endian *features*)))) ;;;; success