aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaul.gill <saul.gill@est.tech>2023-10-11 14:05:53 +0100
committersaul.gill <saul.gill@est.tech>2023-10-11 14:05:55 +0100
commit351ec4b90cef7783f180abdf9e2c35b6bfdf2bf3 (patch)
tree5b9d6e7a25eec0183fa50ec49f50d751f34396b7
parent336d94aa7cf3e23b5b62772504edb0d1daeb9520 (diff)
Fix run-s3p-test.sh
Add missing arg in script Issue-ID: POLICY-4853 Change-Id: Ibd7d01e63e5c6ec8a480ff4f2ecf67d83acc912f Signed-off-by: saul.gill <saul.gill@est.tech>
-rwxr-xr-xtestsuites/run-s3p-test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/run-s3p-test.sh b/testsuites/run-s3p-test.sh
index af8d40ee2..8af1c9291 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 $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