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
baadd38b
Commit
baadd38b
authored
Mar 17, 2010
by
Robert P. Goldman
Browse files
usage bash function was forward-referenced. Fixed.
parent
53a771dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/run-tests.sh
View file @
baadd38b
...
...
@@ -5,6 +5,18 @@
# - quit with exit status 0 on getting eof
# - quit with exit status >0 if an unhandled error occurs
usage
()
{
echo
"
$0
[lisp invocation] [scripts-regex]"
echo
" - read lisp forms one at a time from matching scripts"
echo
" - quit with exit status 0 on getting eof"
echo
" - quit with exit status >0 if an unhandled error occurs"
echo
" you need to supply the .script in the second argument"
echo
" lisps include sbcl, clisp, allegro and allegromodern"
echo
"OPTIONS:"
echo
" -d -- debug mode"
echo
" -u -h -- show this message."
}
unset
DEBUG_ASDF_TEST
while
getopts
"duh"
OPTION
...
...
@@ -38,18 +50,6 @@ fi
sok
=
1
usage
()
{
echo
"
$0
[lisp invocation] [scripts-regex]"
echo
" - read lisp forms one at a time from matching scripts"
echo
" - quit with exit status 0 on getting eof"
echo
" - quit with exit status >0 if an unhandled error occurs"
echo
" you need to supply the .script in the second argument"
echo
" lisps include sbcl, clisp, allegro and allegromodern"
echo
"OPTIONS:"
echo
" -d -- debug mode"
echo
" -u -h -- show this message."
}
DO
()
{
(
set
-x
;
"
$@
"
)
;
}
do_tests
()
{
...
...
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