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

Don't load either user or system init files when testing with ABCL

parent 04a854f4
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ test-upgrade: ...@@ -91,7 +91,7 @@ test-upgrade:
use_sbcl () { li="${SBCL} --noinform --no-userinit --load" ; ev="--eval" ; } ; \ use_sbcl () { li="${SBCL} --noinform --no-userinit --load" ; ev="--eval" ; } ; \
use_ecl () { li="${ECL} -norc -load" ; ev="-eval" ; } ; \ use_ecl () { li="${ECL} -norc -load" ; ev="-eval" ; } ; \
use_cmucl () { li="${CMUCL} -noinit -load" ; ev="-eval" ; } ; \ use_cmucl () { li="${CMUCL} -noinit -load" ; ev="-eval" ; } ; \
use_abcl () { li="${ABCL} -noinit --noinform --load" ; ev="--eval" ; } ; \ use_abcl () { li="${ABCL} --noinit --nosystem --noinform --load" ; ev="--eval" ; } ; \
use_scl () { li="${SCL} -noinit -load" ; ev="-eval" ; } ; \ use_scl () { li="${SCL} -noinit -load" ; ev="-eval" ; } ; \
use_allegro () { li="${ALLEGRO} -q -L" ; ev="-e" ; } ; \ use_allegro () { li="${ALLEGRO} -q -L" ; ev="-e" ; } ; \
use_allegromodern () { li="${ALLEGROMODERN} -q -L" ; ev="-e" ; } ; \ use_allegromodern () { li="${ALLEGROMODERN} -q -L" ; ev="-e" ; } ; \
......
...@@ -104,7 +104,7 @@ command= flags= nodebug= eval= ...@@ -104,7 +104,7 @@ command= flags= nodebug= eval=
case "$lisp" in case "$lisp" in
abcl) abcl)
command="${ABCL:-abcl}" command="${ABCL:-abcl}"
flags="--noinit --noinform" flags="--noinit --nosystem --noinform"
eval="--eval" ;; eval="--eval" ;;
allegro) allegro)
command="${ALLEGRO:-alisp}" command="${ALLEGRO:-alisp}"
......
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