Skip to content
Snippets Groups Projects
Commit 550e4f93 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Fix run-tests to the actually use the $flags,

which one of my previous refactorings broke. (Thanks to Mark Evenson)
parent f8701e93
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,7 @@ usage () { ...@@ -52,7 +52,7 @@ usage () {
} }
do_tests() { do_tests() {
command=$1 eval=$2 command="$1" eval="$2"
rm -f ~/.cache/common-lisp/"`pwd`"/* || true rm -f ~/.cache/common-lisp/"`pwd`"/* || true
( cd .. && $command $eval '(load "test/compile-asdf.lisp")' ) ( cd .. && $command $eval '(load "test/compile-asdf.lisp")' )
if [ $? -ne 0 ] ; then if [ $? -ne 0 ] ; then
...@@ -181,6 +181,7 @@ if [ -z "$command" ] ; then ...@@ -181,6 +181,7 @@ if [ -z "$command" ] ; then
else else
create_config create_config
mkdir -p results mkdir -p results
command="$command $flags"
echo $command echo $command
thedate=`date "+%Y-%m-%d"` thedate=`date "+%Y-%m-%d"`
do_tests "$command" "$eval" 2>&1 | \ do_tests "$command" "$eval" 2>&1 | \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment