From: saul.gill Date: Wed, 11 Oct 2023 13:05:53 +0000 (+0100) Subject: Fix run-s3p-test.sh X-Git-Tag: 2.0.1~3 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=351ec4b90cef7783f180abdf9e2c35b6bfdf2bf3;p=policy%2Fdrools-applications.git Fix run-s3p-test.sh Add missing arg in script Issue-ID: POLICY-4853 Change-Id: Ibd7d01e63e5c6ec8a480ff4f2ecf67d83acc912f Signed-off-by: saul.gill --- diff --git a/testsuites/run-s3p-test.sh b/testsuites/run-s3p-test.sh index af8d40ee2..8af1c9291 100755 --- a/testsuites/run-s3p-test.sh +++ b/testsuites/run-s3p-test.sh @@ -35,10 +35,10 @@ then if [ $2 == "performance" ] then - bash start-s3p-tests.sh run $DROOLS_PERF_TEST_FILE; + bash start-s3p-tests.sh run $DROOLS_PERF_TEST_FILE drools-applications; elif [ $2 == "stability" ] then - bash start-s3p-tests.sh run $DROOLS_STAB_TEST_FILE; + bash start-s3p-tests.sh run $DROOLS_STAB_TEST_FILE drools-applications; else echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}" fi