Fix run-s3p-test.sh 42/136142/1
authorsaul.gill <saul.gill@est.tech>
Wed, 11 Oct 2023 13:05:53 +0000 (14:05 +0100)
committersaul.gill <saul.gill@est.tech>
Wed, 11 Oct 2023 13:05:55 +0000 (14:05 +0100)
Add missing arg in script

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

index af8d40e..8af1c92 100755 (executable)
@@ -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