mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 05:06:43 +00:00
fix flag name
This commit is contained in:
parent
4cb8e094b9
commit
b2d3ba959b
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue