Merge "Create results directory for functional test results if doesn't exist"
This commit is contained in:
commit
2ba761a36c
@ -129,6 +129,11 @@ log_section Running tests
|
|||||||
|
|
||||||
ROOTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
ROOTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
|
||||||
|
# Create folder for saving HTML test results.
|
||||||
|
if [ ! -d $ROOTDIR/results ]; then
|
||||||
|
mkdir $ROOTDIR/results
|
||||||
|
fi
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
posargs=$@
|
posargs=$@
|
||||||
if [ ${#posargs} -ge 1 ]; then
|
if [ ${#posargs} -ge 1 ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user