Skip to content
Snippets Groups Projects
Commit 0ae8fb60 authored by Patrick Baudin's avatar Patrick Baudin
Browse files

[tests] fix promoting when using test script

parent e88b2108
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,7 @@ LOGS= ...@@ -29,6 +29,7 @@ LOGS=
TESTS= TESTS=
SAVE= SAVE=
DUNE_ALIAS=
DUNE_OPT= DUNE_OPT=
DUNE_LOG=./.test-errors.log DUNE_LOG=./.test-errors.log
CACHEDIR=$(pwd -P)/.wp-cache CACHEDIR=$(pwd -P)/.wp-cache
...@@ -169,9 +170,10 @@ function PullCache ...@@ -169,9 +170,10 @@ function PullCache
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
[ "$DUNE_LOG" = "" ] || rm -rf $DUNE_LOG [ "$DUNE_LOG" = "" ] || rm -rf $DUNE_LOG
function TestAlias function RunAlias
{ {
Head "Running tests..."
if [ "$DUNE_LOG" = "" ]; then if [ "$DUNE_LOG" = "" ]; then
Run dune build $DUNE_OPT $@ Run dune build $DUNE_OPT $@
elif [ "$SAVE" != "yes" ] && [ "$VERBOSE" != "yes" ]; then elif [ "$SAVE" != "yes" ] && [ "$VERBOSE" != "yes" ]; then
...@@ -204,8 +206,8 @@ function TestDir ...@@ -204,8 +206,8 @@ function TestDir
CFG="(config $CONFIG)" CFG="(config $CONFIG)"
;; ;;
esac esac
Head "Running test on directory $1 $CFG" Head "Register test on directory $1 $CFG"
TestAlias @$ALIAS DUNE_ALIAS="${DUNE_ALIAS} @$ALIAS"
} }
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
...@@ -233,15 +235,15 @@ function TestFile ...@@ -233,15 +235,15 @@ function TestFile
else else
ALIAS=$DIR/$RESULT/${FILE%.*}.wtests ALIAS=$DIR/$RESULT/${FILE%.*}.wtests
fi fi
Head "Running test on file $1 $CFG" Head "Register test on file $1 $CFG"
TestAlias @$ALIAS DUNE_ALIAS="${DUNE_ALIAS} @$ALIAS"
} }
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
# --- Tests Processing # --- Tests Processing
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
function RunTests function Register
{ {
while [ "$1" != "" ] while [ "$1" != "" ]
do do
...@@ -251,7 +253,7 @@ function RunTests ...@@ -251,7 +253,7 @@ function RunTests
TestFile $1 TestFile $1
else else
case $1 in case $1 in
@*) Head "Running test on alias $1"; TestAlias $1;; @*) Head "Register test on alias $1"; DUNE_ALIAS="${DUNE_ALIAS} $1";;
*) ErrorUsage "ERROR: don't known what to do with '$1'";; *) ErrorUsage "ERROR: don't known what to do with '$1'";;
esac esac
fi fi
...@@ -349,5 +351,6 @@ do ...@@ -349,5 +351,6 @@ do
esac esac
shift shift
done done
RunTests $TESTS Register $TESTS
RunAlias ${DUNE_ALIAS}
Status $DUNE_LOG Status $DUNE_LOG
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