diff options
author | saul.gill <saul.gill@est.tech> | 2023-10-11 14:05:53 +0100 |
---|---|---|
committer | saul.gill <saul.gill@est.tech> | 2023-10-11 14:05:55 +0100 |
commit | 351ec4b90cef7783f180abdf9e2c35b6bfdf2bf3 (patch) | |
tree | 5b9d6e7a25eec0183fa50ec49f50d751f34396b7 /testsuites/run-s3p-test.sh | |
parent | 336d94aa7cf3e23b5b62772504edb0d1daeb9520 (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>
Diffstat (limited to 'testsuites/run-s3p-test.sh')
-rwxr-xr-x | testsuites/run-s3p-test.sh | 4 |
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 |