clunit
clunit copied to clipboard
Newlines Broken in CCL
In Clozure, and perhaps other lisps (I couldn't try), the report format differs from that in the tutorial. Newlines are missing, e.g.:
(cls-tests:run)
PROGRESS:
TESTS: (Test Suite)
COMPOUND: (Test Suite)
ARITHMETIC: (Test Suite)
VECTOR-ADDITION: F.
FAILURE DETAILS:================TESTS -> COMPOUND -> ARITHMETIC: (Test Suite) VECTOR-ADDITION: Expression: (= 1 -1) Expected: T Returned: NIL SUMMARY:========Test functions:Executed: 1Skipped: 0Tested 2 assertions.Passed: 1/2 ( 50.0%)Failed: 1/2 ( 50.0%)
Hi!
Seems that the default value of *pretty-print* is nil on CCL (according to specs the default value of this variable is implementation dependent). Setting *pretty-print* to t should work.
Bye! C.