mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-17 06:42:18 -08:00
SBCL needs a QUIT statement because it will not exit even when the input stream is empty.
This commit is contained in:
parent
9b3594e460
commit
60577f43c9
1 changed files with 8 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue