From: saul.gill Date: Wed, 11 Oct 2023 12:58:56 +0000 (+0100) Subject: Fix run-s3p-test.sh X-Git-Tag: 3.0.1~5 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=cc661bcef2f7219f3e34e65d99b99780f8c3c391;p=policy%2Fpap.git Fix run-s3p-test.sh Add missing arg in script Issue-ID: POLICY-4853 Change-Id: I33a249977194beff13ed704273f65fddedf09f11 Signed-off-by: saul.gill --- diff --git a/testsuites/run-s3p-test.sh b/testsuites/run-s3p-test.sh index a9453212..91576070 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 $PAP_PERF_TEST_FILE; + bash start-s3p-tests.sh run $PAP_PERF_TEST_FILE pap; elif [ $2 == "stability" ] then - bash start-s3p-tests.sh run $PAP_STAB_TEST_FILE; + bash start-s3p-tests.sh run $PAP_STAB_TEST_FILE pap; else echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}" fi