fix(test): Fix command line opt in run all script 02/302/1
authorE. Scott Daniels <daniels@research.att.com>
Tue, 11 Jun 2019 17:51:37 +0000 (13:51 -0400)
committerE. Scott Daniels <daniels@research.att.com>
Tue, 11 Jun 2019 17:51:37 +0000 (13:51 -0400)
The end to end run all test script was inavertently
setting the installed flag to test agains the installed
libraries rather than the current source libraries by
default.

Signed-off-by: E. Scott Daniels <daniels@research.att.com>
Change-Id: Ic11b01a425897bce4cf0a47234f5fd398a7cad74

test/app_test/run_all.ksh

index 7271cfd..34a4b84 100644 (file)
@@ -7,6 +7,7 @@ while [[ $1 == "-"* ]]
 do
        case $1 in 
                -B)     build="-B";;
+               -i)     installed="-i";;
 
                *)      echo "'$1' is not a recognised option and is ignored";;
        esac
@@ -15,7 +16,7 @@ do
 done
 
 set -e
-ksh run_app_test.ksh -v -i $build
+ksh run_app_test.ksh -v $installed $build
 ksh run_multi_test.ksh
 ksh run_rr_test.ksh
 ksh run_rts_test.ksh -s 20