,test-util:*break-on-expected-failure*)
(let ((file ,test-file)
(*break-on-error* ,run-tests::*break-on-error*))
+ (declare (special *break-on-error*))
(format t "// Running ~a~%" file)
(restart-case
(handler-bind
(setf *test-count* 0))
(incf *test-count*))
+(defun really-invoke-debugger (condition)
+ (with-simple-restart (continue "Continue")
+ (let ((*invoke-debugger-hook* *invoke-debugger-hook*))
+ (enable-debugger)
+ (invoke-debugger condition))))
+
(defun fail-test (type test-name condition)
(if (stringp condition)
(log-msg "~@<~A ~S ~:_~A~:>"
(defun skipped-p (skipped-on)
(sb-impl::featurep skipped-on))
-(defun really-invoke-debugger (condition)
- (with-simple-restart (continue "Continue")
- (let ((*invoke-debugger-hook* *invoke-debugger-hook*))
- (enable-debugger)
- (invoke-debugger condition))))
-
(defun test-env ()
(cons (format nil "SBCL_MACHINE_TYPE=~A" (machine-type))
(cons (format nil "SBCL_SOFTWARE_TYPE=~A" (software-type))