From a64ed9a1abe2cc6a76b66b5e5b0059091b2ce155 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <fare@tunes.org> Date: Tue, 22 Nov 2011 12:13:34 -0500 Subject: [PATCH] Don't load either user or system init files when testing with ABCL --- Makefile | 2 +- test/run-tests.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4dd1692d..e414d149 100644 --- a/Makefile +++ b/Makefile @@ -91,7 +91,7 @@ test-upgrade: use_sbcl () { li="${SBCL} --noinform --no-userinit --load" ; ev="--eval" ; } ; \ use_ecl () { li="${ECL} -norc -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_allegro () { li="${ALLEGRO} -q -L" ; ev="-e" ; } ; \ use_allegromodern () { li="${ALLEGROMODERN} -q -L" ; ev="-e" ; } ; \ diff --git a/test/run-tests.sh b/test/run-tests.sh index be5bebf9..274754a5 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -104,7 +104,7 @@ command= flags= nodebug= eval= case "$lisp" in abcl) command="${ABCL:-abcl}" - flags="--noinit --noinform" + flags="--noinit --nosystem --noinform" eval="--eval" ;; allegro) command="${ALLEGRO:-alisp}" -- GitLab