From: E. Scott Daniels Date: Tue, 11 Jun 2019 17:51:37 +0000 (-0400) Subject: fix(test): Fix command line opt in run all script X-Git-Tag: 1.0.36~9 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=da3c8ba4f033b4f416281be952651e2b45343599;p=ric-plt%2Flib%2Frmr.git fix(test): Fix command line opt in run all script 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 Change-Id: Ic11b01a425897bce4cf0a47234f5fd398a7cad74 --- diff --git a/test/app_test/run_all.ksh b/test/app_test/run_all.ksh index 7271cfd..34a4b84 100644 --- a/test/app_test/run_all.ksh +++ b/test/app_test/run_all.ksh @@ -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