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%)
Bug originally stated by snunez1 at:
https://github.com/tgutu/clunit/issues/11
Uhm...this is strange, i fear there will be needs for a bunch of #+ccl to fix this bug, OK i have to install CCL and i am going to start investigating this.
Bye!
C.
Uhm...this is strange, i fear there will be needs for a bunch of `#+ccl` to fix this bug, OK i have to install CCL and i am going to start investigating this.
Bye!
C.
Now i wonder if setting the special variable *print-pretty* to t would be enough (perhaps for CCL and ABCL the default value is nil).
Bye!
C.
Hi jgodbout!
Now i wonder if setting the special variable `*print-pretty*` to `t` would be enough (perhaps for `CCL` and `ABCL` the default value is `nil`).
Bye!
C.
Fortunately at least with CCL (v1.12) setting *print-pretty* to t seems to works! :)
Please could you just try the same on ABCL, i feel the same setting works on this implementation.
Bye!
C.
Hi jgodbout!
Fortunately at least with CCL (v1.12) setting `*print-pretty*` to `t` seems to works! :)
Please could you just try the same on ABCL, i feel the same setting works on this implementation.
Bye!
C.
It is very far from perfect but i pushed a workaround that, in my opinion, could make the output this library (when using ABCL) less messy.
To works you have to bind *print-pretty* to t.
Feel free to comment, as usual! :)
Bye!
C.
Hi jgodbout!
It is very far from perfect but i pushed a workaround that, in my opinion, could make the output this library (when using ABCL) less messy.
To works you have to bind `*print-pretty*` to `t`.
Feel free to comment, as usual! :)
Bye!
C.
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)
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%)
Bug originally stated by snunez1 at: https://github.com/tgutu/clunit/issues/11
Uhm...this is strange, i fear there will be needs for a bunch of
#+ccl
to fix this bug, OK i have to install CCL and i am going to start investigating this.Bye! C.
This affects abcl as well
Hi jgodbout!
Now i wonder if setting the special variable
*print-pretty*
tot
would be enough (perhaps forCCL
andABCL
the default value isnil
).Bye!
C.
Hi jgodbout!
Fortunately at least with CCL (v1.12) setting
*print-pretty*
tot
seems to works! :)Please could you just try the same on ABCL, i feel the same setting works on this implementation.
Bye!
C.
Doesn't seem to work with abcl...
Hi jgodbout!
Oh, that's bad :(
So seems that I have to setup ABCL an check what's going wrong.
Thank you for trying by the way!
Bye!
C.
Hi jgodbout!
It is very far from perfect but i pushed a workaround that, in my opinion, could make the output this library (when using ABCL) less messy.
To works you have to bind
*print-pretty*
tot
.Feel free to comment, as usual! :)
Bye!
C.
Hi jgodbout!
Can you confirm that this patch fix the issues with ABCL?
Bye!
C.