From: Tobias C. Rittweiler Date: Tue, 6 Apr 2010 10:07:22 +0000 (+0000) Subject: 1.0.37.40: More informative UNEXPECTED-FAILURE reporting... X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=1809389def0b7147e354acce1316cfa109091b51;p=sbcl.git 1.0.37.40: More informative UNEXPECTED-FAILURE reporting... ..by making it report the actual error message as well. --- diff --git a/tests/test-util.lisp b/tests/test-util.lisp index 7ef6b6b..f9ca05f 100644 --- a/tests/test-util.lisp +++ b/tests/test-util.lisp @@ -48,7 +48,8 @@ (incf *test-count*)) (defun fail-test (type test-name condition) - (log-msg "~A ~S" type test-name) + (log-msg "~@<~A ~S ~:_due to ~S: ~4I~:_\"~A\"~:>" + type test-name condition condition) (push (list type *test-file* (or test-name *test-count*)) *failures*) (when (or (and *break-on-failure* diff --git a/version.lisp-expr b/version.lisp-expr index 8e57c27..abade63 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.37.39" +"1.0.37.40"