Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Pascal J. Bourguignon
asdf
Commits
a64ed9a1
Commit
a64ed9a1
authored
Nov 22, 2011
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't load either user or system init files when testing with ABCL
parent
04a854f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Makefile
Makefile
+1
-1
test/run-tests.sh
test/run-tests.sh
+1
-1
No files found.
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 --no
system --no
inform"
eval
=
"--eval"
;;
allegro
)
command
=
"
${
ALLEGRO
:-
alisp
}
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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