diff options
author | saul.gill <saul.gill@est.tech> | 2023-10-11 13:51:24 +0100 |
---|---|---|
committer | saul.gill <saul.gill@est.tech> | 2023-10-11 13:51:30 +0100 |
commit | e69e387241d5ea46597965682a38adb6c12147b0 (patch) | |
tree | eace23c5808ed213e0ca39fcc0435d5b2660f7aa /testsuites/run-s3p-test.sh | |
parent | 02756d57ac2451c5e6f5c97465390b491e46ebc9 (diff) |
Fix run-s3p-test.sh
Add missing arg in script
Issue-ID: POLICY-4853
Change-Id: I175f2ca3529ab881b07fdfcd1fb7b629b8747354
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 9a4d044f0..cec230e30 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 $ACM_PERF_TEST_FILE; + bash start-s3p-tests.sh run $ACM_PERF_TEST_FILE clamp; elif [ $2 == "stability" ] then - bash start-s3p-tests.sh run $ACM_STAB_TEST_FILE; + bash start-s3p-tests.sh run $ACM_STAB_TEST_FILE clamp; else echo "echo Invalid arguments provided. Usage: $0 [option..] {performance | stability}" fi |