From: Tomas Hlavaty Date: Wed, 6 Jun 2012 14:31:14 +0000 (+0200) Subject: turn off *PRINT-PRETTY* when reporting test results, want line per result X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=a51749228e41a0fd65024a0e15f38dba986a3ab7;p=sbcl.git turn off *PRINT-PRETTY* when reporting test results, want line per result This new format is easier to parse than the old line-wrapped output. --- diff --git a/tests/run-tests.lisp b/tests/run-tests.lisp index bf4892a..dcf2f2c 100644 --- a/tests/run-tests.lisp +++ b/tests/run-tests.lisp @@ -44,7 +44,8 @@ (defun report () (terpri) (format t "Finished running tests.~%") - (let ((skipcount 0)) + (let ((skipcount 0) + (*print-pretty* nil)) (cond (*all-failures* (format t "Status:~%") (dolist (fail (reverse *all-failures*))