diff options
author | saul.gill <saul.gill@est.tech> | 2023-10-11 13:58:56 +0100 |
---|---|---|
committer | saul.gill <saul.gill@est.tech> | 2023-10-11 13:58:59 +0100 |
commit | cc661bcef2f7219f3e34e65d99b99780f8c3c391 (patch) | |
tree | 27cacf207d71fa7d4ad35e6b921ad5139e0bf23e /testsuites | |
parent | 42c18ef1c6506e63151b55a96d90362da9fbda63 (diff) |
Fix run-s3p-test.sh
Add missing arg in script
Issue-ID: POLICY-4853
Change-Id: I33a249977194beff13ed704273f65fddedf09f11
Signed-off-by: saul.gill <saul.gill@est.tech>
Diffstat (limited to 'testsuites')
-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 a9453212..91576070 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 $PAP_PERF_TEST_FILE; + bash start-s3p-tests.sh run $PAP_PERF_TEST_FILE pap; elif [ $2 == "stability" ] then - bash start-s3p-tests.sh run $PAP_STAB_TEST_FILE; + bash start-s3p-tests.sh run $PAP_STAB_TEST_FILE pap; else echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}" fi |