From: saul.gill Date: Wed, 11 Oct 2023 12:54:22 +0000 (+0100) Subject: Fix run-s3p-test.sh X-Git-Tag: 3.0.1~4 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=4dfbf8f9fd6b3a0afc46b313028c05914328cfca;p=policy%2Fapex-pdp.git Fix run-s3p-test.sh Add missing arg in script Issue-ID: POLICY-4853 Change-Id: I13ebc1351b32877813d266f2dbdf86dfa7b05e04 Signed-off-by: saul.gill --- diff --git a/testsuites/run-s3p-test.sh b/testsuites/run-s3p-test.sh index b654c14fd..1177140df 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 $APEX_PERF_TEST_FILE; + bash start-s3p-tests.sh run $APEX_PERF_TEST_FILE apex-pdp; elif [ $2 == "stability" ] then - bash start-s3p-tests.sh run $APEX_STAB_TEST_FILE; + bash start-s3p-tests.sh run $APEX_STAB_TEST_FILE apex-pdp; else echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}" fi