Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
c138afd5
Commit
c138afd5
authored
Oct 15, 2013
by
Francois-Rene Rideau
Browse files
Enable test-compile-file-failure on CLISP (works on 2.49 and later) and ECL w/o bytecodes.
parent
c78363b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/test-compile-file-failure.lisp
View file @
c138afd5
(
in-package
:asdf
)
(
eval-when
(
:compile-toplevel
:load-toplevel
:execute
)
;; CLISP 2.48 has a bug that makes this test fail.
;; CLISP 2.48 has a bug that makes this test fail.
Hopefully, everyone uses 2.49 or better.
;; The ECL bytecode compiler also fails.
;; Work around:
#+
(
or
clisp
ecl
)
#+
(
and
ecl
ecl_bytecodes
)
(
when
(
and
(
eq
asdf:*compile-file-failure-behaviour*
:error
)
#+
ecl
(
equal
(
compile-file-type
)
"fasc"
))
(
error
'compile-file-error
:description
"faking it"
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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