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
a64ed9a1
Commit
a64ed9a1
authored
Nov 22, 2011
by
Francois-Rene Rideau
Browse files
Don't load either user or system init files when testing with ABCL
parent
04a854f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
a64ed9a1
...
...
@@ -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"
;
}
;
\
...
...
test/run-tests.sh
View file @
a64ed9a1
...
...
@@ -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
}
"
...
...
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