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
3d227ef2
Commit
3d227ef2
authored
Oct 02, 2011
by
Francois-Rene Rideau
Browse files
Patch by juanjo to allow testing with lisp=ecl-bytecmp
parent
b7aa30f7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
3d227ef2
...
...
@@ -7,7 +7,7 @@ sourceDirectory := $(shell pwd)
lisps
?=
ccl clisp sbcl ecl cmucl abcl scl allegro
## occasionally tested by not me: allegromodern lispworks xcl
## FAIL: gclcvs (COMPILER BUGS!!!)
## tentatively supported by asdf, not supported by our tests: cormancl mcl genera
## tentatively supported by asdf, not supported by our tests:
ecl-bytecmp
cormancl mcl genera
lisp
?=
sbcl
...
...
test/compile-asdf.lisp
View file @
3d227ef2
...
...
@@ -22,8 +22,9 @@
(
multiple-value-bind
(
result
warnings-p
errors-p
)
;; style warnings shouldn't abort the compilation [2010/02/03:rpg]
(
handler-bind
(
#+
sbcl
(
sb-c::simple-compiler-note
#'
muffle-warning
)
#+
ecl
((
or
c:compiler-note
c::compiler-debug-note
c:compiler-warning
)
;; ECL emits more serious warnings than it should.
#+
(
and
ecl
(
not
ecl-bytecmp
))
((
or
c:compiler-note
c::compiler-debug-note
c:compiler-warning
)
;; ECL emits more serious warnings than it should.
#'
muffle-warning
)
#-
(
or
cmu
scl
)
(
style-warning
...
...
test/run-tests.sh
View file @
3d227ef2
...
...
@@ -133,7 +133,11 @@ case "$lisp" in
eval
=
"-eval"
;;
ecl
)
command
=
"
${
ECL
:-
ecl
}
"
flags
=
"-norc"
flags
=
"-norc -load sys:cmp"
eval
=
"-eval"
;;
ecl-bytecodes
)
command
=
"
${
ECL
:-
ecl
}
"
flags
=
"-norc -eval (ext::install-bytecodes-compiler)"
eval
=
"-eval"
;;
gclcvs
)
export
GCL_ANSI
=
t
...
...
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