lmj / lparallel

Parallelism for Common Lisp
http://lparallel.org
BSD 3-Clause "New" or "Revised" License
244 stars 29 forks source link

lparallel-test not in Quicklisp repository #24

Closed snunez1 closed 8 years ago

snunez1 commented 8 years ago

The documentation:

https://lparallel.org/download/

says:

"To run the test suite,

(ql:quickload :lparallel-test) (lparallel-test:execute)"

However this produces an error at the ql:quickload step, saying the system is not found. Indeed, checking at https://www.quicklisp.org/beta/releases.html, one can see that lparallel-test is not included in quicklisp.

lmj commented 8 years ago

The system was recently excluded from the Quicklisp database due to a warning in lparallel-test when compiling with a recent SBCL. I've committed a fix which should be propagated to the next Quicklisp release.

Note (ql:quickload :lparallel-test) has always worked when lparallel is installed locally, since quickload muffles warnings by default.

Thanks.