X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fcondition.pure.lisp;h=cddc4be1227413119d980379093dd3f4ec0c6fc6;hb=905a0fc4c21ff6c8c752b9436e0616b868f1dfcc;hp=0a4dd84575f0371eb5b2c7aeb05190a626741093;hpb=b1bc2f2142b25964c60d8a295afe1ecf289cd0c8;p=sbcl.git diff --git a/tests/condition.pure.lisp b/tests/condition.pure.lisp index 0a4dd84..cddc4be 100644 --- a/tests/condition.pure.lisp +++ b/tests/condition.pure.lisp @@ -114,3 +114,40 @@ (control-error (c) (format nil "~A" c)) ;; there had better be an error (:no-error (&rest args) (error "No error: ~S" args))) + +(handler-case + (funcall (lambda (x) (check-type x fixnum) x) t) + (type-error (c) + (assert (and (subtypep (type-error-expected-type c) 'fixnum) + (subtypep 'fixnum (type-error-expected-type c)))) + (assert (eq (type-error-datum c) t))) + (:no-error (&rest rest) (error "no error: ~S" rest))) + +;;; ANSI specifies TYPE-ERROR if datum and arguments of ERROR are not +;;; designators for a condition. Reported by Bruno Haible on cmucl-imp +;;; 2004-10-12. +(flet ((test (&rest args) + (multiple-value-bind (res err) + (ignore-errors (apply #'error args)) + (assert (not res)) + (assert (typep err 'type-error)) + (assert (not (nth-value 1 (ignore-errors + (type-error-datum err))))) + (assert (not (nth-value 1 (ignore-errors + (type-error-expected-type err)))))))) + (test '#:no-such-condition) + (test nil) + (test t) + (test 42) + (test (make-instance 'standard-object))) + +;;; If CERROR is given a condition, any remaining arguments are only +;;; used for the continue format control. +(let ((x 0)) + (handler-bind + ((simple-error (lambda (c) (incf x) (continue c)))) + (cerror "Continue from ~A at ~A" + (make-condition 'simple-error :format-control "foo" + :format-arguments nil) + 'cerror (get-universal-time)) + (assert (= x 1))))