From a51749228e41a0fd65024a0e15f38dba986a3ab7 Mon Sep 17 00:00:00 2001 From: Tomas Hlavaty Date: Wed, 6 Jun 2012 16:31:14 +0200 Subject: [PATCH] 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. --- tests/run-tests.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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*)) -- 1.7.10.4