Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
25a5bd72
Commit
25a5bd72
authored
Feb 04, 2010
by
Francois-Rene Rideau
Browse files
Don't hang when ECL compiles with warning, exit with "success"!
parent
8da3bfa8
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/compile-asdf.lisp
View file @
25a5bd72
...
@@ -12,7 +12,9 @@
...
@@ -12,7 +12,9 @@
(
compile-file
"asdf.lisp"
))
(
compile-file
"asdf.lisp"
))
(
declare
(
ignore
result
))
(
declare
(
ignore
result
))
(
cond
(
warnings-p
(
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
))
(
leave-lisp
"Testsuite failed: ASDF compiled with warnings"
1
))
(
errors-p
(
errors-p
(
leave-lisp
"Testsuite failed: ASDF compiled with ERRORS"
2
))
(
leave-lisp
"Testsuite failed: ASDF compiled with ERRORS"
2
))
...
@@ -20,3 +22,4 @@
...
@@ -20,3 +22,4 @@
(
leave-lisp
"ASDF compiled cleanly"
0
)))))
(
leave-lisp
"ASDF compiled cleanly"
0
)))))
(
t
(
t
(
leave-lisp
"Testsuite failed: unable to find ASDF source"
3
)))
(
leave-lisp
"Testsuite failed: unable to find ASDF source"
3
)))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment