From 43b2b9305d9347630da533c7f715e6084e0772de Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Tue, 11 Aug 2026 13:01:13 +0200 Subject: [PATCH] docs: fix stale usage text in run_tests.sh The testnets target defaults to TEST_THREADS=6, not 15, and the test targets no longer exist in the Makefile. --- runner/run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/run_tests.sh b/runner/run_tests.sh index d55c5695e..a14ca8a1a 100755 --- a/runner/run_tests.sh +++ b/runner/run_tests.sh @@ -42,9 +42,9 @@ Targets: tests Run all tests (default TEST_THREADS=20), DbSyncAbortOnPanic=1 testpr Run PR-level tests (default CLUSTERS_COUNT=5, TEST_THREADS=20, MARKEXPR="smoke") testnets Run tests that can run on public testnets (CLUSTERS_COUNT=1, FORBID_RESTART=true, - default TEST_THREADS=15, MARKEXPR="testnets") + default TEST_THREADS=6, MARKEXPR="testnets") -All targets respect the same env vars as the original Makefile. +All targets respect the env vars documented at the top of this script. EOF }