From: saul.gill Date: Wed, 11 Oct 2023 13:01:33 +0000 (+0100) Subject: Fix run-s3p-test.sh X-Git-Tag: 3.0.1~3 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=a77722ef5ee38ac1a63944f17cc442f2f294adf1;p=policy%2Fxacml-pdp.git Fix run-s3p-test.sh Add missing arg in script Issue-ID: POLICY-4853 Change-Id: I6ca818a4a86b96337d9b00bb83d2728d155ff7c7 Signed-off-by: saul.gill --- diff --git a/testsuites/run-s3p-test.sh b/testsuites/run-s3p-test.sh index 83fcbe2e..32ff5586 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 $XACML_PERF_TEST_FILE; + bash start-s3p-tests.sh run $XACML_PERF_TEST_FILE xacml-pdp; elif [ $2 == "stability" ] then - bash start-s3p-tests.sh run $XACML_STAB_TEST_FILE; + bash start-s3p-tests.sh run $XACML_STAB_TEST_FILE xacml-pdp; else echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}" fi