Fix run-s3p-test.sh 40/136140/1
authorsaul.gill <saul.gill@est.tech>
Wed, 11 Oct 2023 13:01:33 +0000 (14:01 +0100)
committersaul.gill <saul.gill@est.tech>
Wed, 11 Oct 2023 13:01:36 +0000 (14:01 +0100)
Add missing arg in script

Issue-ID: POLICY-4853
Change-Id: I6ca818a4a86b96337d9b00bb83d2728d155ff7c7
Signed-off-by: saul.gill <saul.gill@est.tech>
testsuites/run-s3p-test.sh

index 83fcbe2..32ff558 100755 (executable)
@@ -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