SBCL needs a QUIT statement because it will not exit even when the input stream is empty.

This commit is contained in:
Juan Jose Garcia Ripoll 2011-12-08 00:07:59 +01:00
parent 9b3594e460
commit 60577f43c9

View file

@ -264,6 +264,10 @@
(ql:quickload ~s)
(princ \"ECL-BUILD-OK\"))
(serious-condition (c) (princ c)))
#+ecl
(ext:quit)
#+sbcl
(sb-ext:quit)
")
(defconstant +quicklisp-test-template+ "
@ -279,6 +283,10 @@
(asdf:oos 'asdf:test-op :$name)
(princ \"ECL-TEST-OK\"))
(serious-condition (c) (princ c)))
#+ecl
(ext:quit)
#+sbcl
(sb-ext:quit)
")
(defun run-quicklisp-tests (&optional (output (merge-pathnames "quicklisp.log"