diff options
author | halil.cakal <halil.cakal@est.tech> | 2024-06-21 15:22:57 +0100 |
---|---|---|
committer | halil.cakal <halil.cakal@est.tech> | 2024-06-24 09:16:39 +0100 |
commit | e88e2c30a6c389e032b5838f2066291e8692d195 (patch) | |
tree | 1134506dc3bad04cc7d488749efca49cd7d301cc /k6-tests/ncmp/run-all-tests.sh | |
parent | f582c464c714816dc5c94bf351927b72d0edc313 (diff) |
Clean up the k6 test suite
- Remove the tests that are not in the Characteristics
- Set .625 seconds/operation for cm handle id search with module filter
- Set 13 seconds/operation for cm handle search with module filter
Issue-ID: CPS-2286
Change-Id: I88d5773abadb29ce46914029332384ae8e55e032
Signed-off-by: halil.cakal <halil.cakal@est.tech>
Diffstat (limited to 'k6-tests/ncmp/run-all-tests.sh')
-rwxr-xr-x | k6-tests/ncmp/run-all-tests.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/k6-tests/ncmp/run-all-tests.sh b/k6-tests/ncmp/run-all-tests.sh index f67b6ef069..bf6370901f 100755 --- a/k6-tests/ncmp/run-all-tests.sh +++ b/k6-tests/ncmp/run-all-tests.sh @@ -18,25 +18,12 @@ ALL_TEST_SCRIPTS=( \ 1-create-cmhandles.js \ 2-wait-for-cmhandles-to-be-ready.js \ -3-passthrough-read.js \ -4-id-search-no-filter.js \ -5-search-no-filter.js \ -6-id-search-public-property.js \ -7-search-public-property.js \ -8-id-search-module.js \ -9-search-module.js \ 10-mixed-load-test.js \ 11-delete-cmhandles.js \ ) pushd "$(dirname "$0")" || exit 1 -echo 'Warming up JVM (warmup results will not be recorded)' -for test_script in "${ALL_TEST_SCRIPTS[@]}"; do - echo "[warmup] k6 run $test_script" - k6 --quiet -e TOTAL_CM_HANDLES=1000 -e REGISTRATION_BATCH_SIZE=10 -e K6_MODULE_NAME="$test_script" run "$test_script" > /dev/null -done - printf "Test Case\tCondition\tLimit\tActual\tResult\n" > summary.log number_of_failures=0 |