turn off *PRINT-PRETTY* when reporting test results, want line per result
authorTomas Hlavaty <tomas.hlavaty@knowledgetools.de>
Wed, 6 Jun 2012 14:31:14 +0000 (16:31 +0200)
committerDavid Lichteblau <david@lichteblau.com>
Fri, 8 Jun 2012 12:24:13 +0000 (14:24 +0200)
This new format is easier to parse than the old line-wrapped output.

tests/run-tests.lisp

index bf4892a..dcf2f2c 100644 (file)
@@ -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*))