From b2d3ba959b7795583d1c8318594969dee43c8bbd Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Mon, 6 Oct 2025 15:27:47 +0200 Subject: [PATCH] fix flag name --- build/ci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ci.go b/build/ci.go index fb5b2e6f11..905f6e4072 100644 --- a/build/ci.go +++ b/build/ci.go @@ -290,7 +290,7 @@ func doTest(cmdline []string) { short = flag.Bool("short", false, "Pass the 'short'-flag to go test") cachedir = flag.String("cachedir", "./build/cache", "directory for caching downloads") skipspectests = flag.Bool("skip-spectests", false, "Skip downloading execution-spec-tests fixtures") - threads = flag.Int("threads", 1, "Number of CPU threads to use for testing") + threads = flag.Int("p", 1, "Number of CPU threads to use for testing") ) flag.CommandLine.Parse(cmdline)