Sets Quick unit test mode as default.

This commit is contained in:
Krunoslav Zaher 2015-08-31 11:23:12 +02:00
parent 6ac94ea5b6
commit 85a9dd16b6
1 changed files with 5 additions and 3 deletions

View File

@ -1,14 +1,16 @@
IS_LOCAL=0
IS_QUICK=0
IS_QUICK=1
if [ "$1" == "l" ]; then
echo "Local test"
IS_LOCAL=1
fi
if [ "$1" == "q" ]; then
if [ "$1" == "f" ]; then
echo "Full"
IS_QUICK=0
else
echo "Quick"
IS_QUICK=1
fi
ISLOCAL="${IS_LOCAL}" . scripts/common.sh