From 4ba2d770d150bc725a33770f053f46c8fa2381d9 Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Thu, 12 Mar 2026 19:34:54 -0700 Subject: [PATCH] scripts: update CVM test script to add thread - Modified the integration test script to support CVM test threads - Add more parameters to cargo nextest to match other files Signed-off-by: Muminul Islam --- scripts/run_integration_tests_cvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_integration_tests_cvm.sh b/scripts/run_integration_tests_cvm.sh index edf543fc8..37e2cc74e 100755 --- a/scripts/run_integration_tests_cvm.sh +++ b/scripts/run_integration_tests_cvm.sh @@ -27,7 +27,7 @@ popd || exit cargo build --features $build_features --all --release --target "$BUILD_TARGET" export RUST_BACKTRACE=1 -cargo nextest run $test_features "common_cvm::$test_filter" -- ${test_binary_args[*]} +time cargo nextest run $test_features --retries 3 --no-fail-fast --no-tests=pass --test-threads=$(($(nproc) / 4)) "common_cvm::$test_filter" -- ${test_binary_args[*]} RES=$? exit $RES