From da3c8ba4f033b4f416281be952651e2b45343599 Mon Sep 17 00:00:00 2001 From: "E. Scott Daniels" Date: Tue, 11 Jun 2019 13:51:37 -0400 Subject: [PATCH] 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 --- test/app_test/run_all.ksh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.16.6