Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Moringen
asdf
Commits
850a64f2
Commit
850a64f2
authored
11 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Simplify ACL configuration using directories.
parent
c1b41263
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/run-tests.sh
+36
-5
36 additions, 5 deletions
test/run-tests.sh
with
36 additions
and
5 deletions
test/run-tests.sh
+
36
−
5
View file @
850a64f2
...
@@ -12,11 +12,16 @@ usage () {
...
@@ -12,11 +12,16 @@ usage () {
echo
" - quit with exit status >0 if an unhandled error occurs"
echo
" - quit with exit status >0 if an unhandled error occurs"
echo
" you need to supply the .script in the second argument"
echo
" you need to supply the .script in the second argument"
echo
" lisps include abcl, ccl (clozure),"
echo
" lisps include abcl, ccl (clozure),"
echo
" allegro, allegro8, allegromodern, allegromodern8,"
echo
" allegro, allegro8, allegromodern, allegromodern8,"
echo
" allegro_s, allegro8_s, allegromodern_s, allegromodern8_s (SMP variants)"
echo
" allegro_s, allegro8_s, allegromodern_s, allegromodern8_s (SMP variants)"
echo
" allegro_64, allegro8_64, allegromodern_64, allegromodern8_64 (64-bit variants),"
echo
" allegro_64, allegro8_64, allegromodern_64, allegromodern8_64 (64-bit variants),"
echo
" allegro_64_S, allegro8_64_S, allegromodern_64_S, allegromodern8_64_S, (SMP, 64-bit variants)"
echo
" allegro_64_S, allegro8_64_S, allegromodern_64_S, allegromodern8_64_S, (SMP, 64-bit variants)"
echo
" clisp, cmucl, ecl, gcl, sbcl, scl and xcl."
echo
" clisp, cmucl, ecl, gcl, sbcl, scl and xcl."
echo
" To configure the script, you may set environment variables to point to the various lisp runtimes."
echo
" Allegro CL is a special case: instead of setting environment variables for the specific runtime"
echo
" locations, you may simply specify the Allegro install directories using these variables:"
echo
" ALLEGRO64DIR, ALLEGRO64SDIR (64-bit Allegro and SMP Allegro, respectively), ALLEGRODIR, and"
echo
" ALLEGROSDIR."
echo
"OPTIONS:"
echo
"OPTIONS:"
echo
" -d -- debug mode"
echo
" -d -- debug mode"
echo
" -h -- show this message."
echo
" -h -- show this message."
...
@@ -31,6 +36,32 @@ unset DEBUG_ASDF_TEST upgrade clean_load load_systems test_interactively extract
...
@@ -31,6 +36,32 @@ unset DEBUG_ASDF_TEST upgrade clean_load load_systems test_interactively extract
SHELL
=
/bin/sh
SHELL
=
/bin/sh
export
SHELL DEBUG_ASDF_TEST GCL_ANSI ASDF_OUTPUT_TRANSLATIONS
export
SHELL DEBUG_ASDF_TEST GCL_ANSI ASDF_OUTPUT_TRANSLATIONS
if
[
$ALLEGRO64DIR
]
;
then
ALLEGRO_64
=
${
ALLEGRO64DIR
}
/alisp
ALLEGRO8_64
=
${
ALLEGRO64DIR
}
/alisp8
ALLEGROMODERN_64
=
${
ALLEGRO64DIR
}
/mlisp
ALLEGROMODERN8_64
=
${
ALLEGRO64DIR
}
/mlisp8
fi
if
[
$ALLEGRO64SDIR
]
;
then
ALLEGRO_64_S
=
${
ALLEGRO64SDIR
}
/alisp
ALLEGRO8_64_S
=
${
ALLEGRO64SDIR
}
/alisp8
ALLEGROMODERN_64_S
=
${
ALLEGRO64SDIR
}
/mlisp
ALLEGROMODERN8_64_S
=
${
ALLEGRO64SDIR
}
/mlisp8
fi
if
[
$ALLEGRODIR
]
;
then
ALLEGRO
=
${
ALLEGRODIR
}
/alisp
ALLEGRO8
=
${
ALLEGRODIR
}
/alisp8
ALLEGROMODERN
=
${
ALLEGRODIR
}
/mlisp
ALLEGROMODERN8
=
${
ALLEGRODIR
}
/mlisp8
fi
if
[
$ALLEGROSDIR
]
;
then
ALLEGRO_S
=
${
ALLEGROSDIR
}
/alisp
ALLEGRO8_S
=
${
ALLEGROSDIR
}
/alisp8
ALLEGROMODERN_S
=
${
ALLEGROSDIR
}
/mlisp
ALLEGROMODERN8_S
=
${
ALLEGROSDIR
}
/mlisp8
fi
while
getopts
"cdtHulhu"
OPTION
while
getopts
"cdtHulhu"
OPTION
do
do
case
$OPTION
in
case
$OPTION
in
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment