Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
850a64f2
Commit
850a64f2
authored
Dec 10, 2013
by
Robert P. Goldman
Browse files
Simplify ACL configuration using directories.
parent
c1b41263
Changes
1
Show whitespace changes
Inline
Side-by-side
test/run-tests.sh
View file @
850a64f2
...
@@ -17,6 +17,11 @@ usage () {
...
@@ -17,6 +17,11 @@ usage () {
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
...
...
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