Making mandatory inclusion unit-tests into build 05/59105/2
authorAndrey Klimenko <and.klimenko@samsung.com>
Wed, 10 Feb 2016 14:55:06 +0000 (16:55 +0200)
committerAndrey Klimenko <and.klimenko@samsung.com>
Wed, 10 Feb 2016 14:57:22 +0000 (06:57 -0800)
Change-Id: I84786f8e6d070f3bdef6f722aefdff7e785fd5ee
Signed-off-by: Andrey Klimenko <and.klimenko@samsung.com>
run.sh

diff --git a/run.sh b/run.sh
index 2a761df..321613d 100755 (executable)
--- a/run.sh
+++ b/run.sh
@@ -13,7 +13,7 @@ action:
   -b  --build           build project
   -i, --install         install to device or emulator
   -r, --run             run application. Don't use with -t option
-  -t, --test            builds unit-tests as well, ignored without -b option
+  -n, --notest          skips build of unit-tests(tests are included into build-procedure by default), ignored without -b option
   -d, --debug           install debuginfo and debugsource packages
   -l, --local          local incremental build(with --noinit --incremental kwys)
 
@@ -25,7 +25,7 @@ build configuration options:
   -v VERSION, --version VERSION build project for target version. Default build on tizen_3.0
 
   examples:
-  'run.sh -b -t -i -A armv7l' will build application and try to install it to target-device, unit-tests will be also built
+  'run.sh -b -i -A armv7l' will build application and try to install it to target-device, unit-tests will be also built
   'run.sh -i -A armv7l[i586|aarch64]' will install latest build for tizen-2.4 device [emulator|tizen-3.0 device]
   'run.sh -b -A armv7l -v tizen_2.4[tizen_3.0]' will build for tizen-2.4[tizen-3.0] on armv7l arch
 "
@@ -40,13 +40,13 @@ BUILDKEYS=""
 INSTALLOPTION=false
 RUNOPTION=false
 DEBUGOPTION=false
-TESTOPTION=false
+TESTOPTION=true
 PLATFORM=armv7l
 LOCALBUILD=false
 TIZENVERSION="default"
 
-SHORTOPTS="hA:b::irdtlv:"
-LONGOPTS="arch:,build::,install,run,debug,test,help,local,version:"
+SHORTOPTS="hA:b::irdnlv"
+LONGOPTS="arch:,build::,install,run,debug,notest,help,local,version:"
 SCRIPTNAME=`basename $0`
 
 ARGS=$(getopt -q --options "$SHORTOPTS" --longoptions "$LONGOPTS" --name $SCRIPTNAME -- "$@")
@@ -94,8 +94,8 @@ while true; do
       -d|--debug)
          DEBUGOPTION=true
          ;;
-      -t|--test)
-         TESTOPTION=true
+      -n|--notest)
+         TESTOPTION=false
          ;;
       -l|--local)
          LOCALBUILD=true