diff options
author | saul.gill <saul.gill@est.tech> | 2023-10-11 14:01:33 +0100 |
---|---|---|
committer | saul.gill <saul.gill@est.tech> | 2023-10-11 14:01:36 +0100 |
commit | a77722ef5ee38ac1a63944f17cc442f2f294adf1 (patch) | |
tree | 1cc8df6063852c15610f3092b5513a00eeefc2ef /testsuites | |
parent | 5e6a65cff426adbbad5391a74b9c275b668058c3 (diff) |
Fix run-s3p-test.sh
Add missing arg in script
Issue-ID: POLICY-4853
Change-Id: I6ca818a4a86b96337d9b00bb83d2728d155ff7c7
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 83fcbe2e..32ff5586 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 $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 |