Skip to content
Snippets Groups Projects
Commit 25a5bd72 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Don't hang when ECL compiles with warning, exit with "success"!

parent 8da3bfa8
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,9 @@
(compile-file "asdf.lisp"))
(declare (ignore result))
(cond (warnings-p
#-ecl ;;; ECL gives warnings that it shouldn't!
;;; ECL gives warnings that it shouldn't!
#+ecl (leave-lisp "ASDF compiled with warnings. Please fix ECL." 0)
#-ecl
(leave-lisp "Testsuite failed: ASDF compiled with warnings" 1))
(errors-p
(leave-lisp "Testsuite failed: ASDF compiled with ERRORS" 2))
......@@ -20,3 +22,4 @@
(leave-lisp "ASDF compiled cleanly" 0)))))
(t
(leave-lisp "Testsuite failed: unable to find ASDF source" 3)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment