Closed
Description
Currently go test -fuzz=MyFunc
seems to spin up a number of workers equal to the number of cores on the machine. The default is reasonable, but it would be nice to provide a flag to control the number of workers. I'd like to set it to 1/2 or even 1/4 of the cores I have, so I can run fuzzing in the background as I work, and not have my computer become unresponsive.
The older go-fuzz
tool has a -procs
flag to accomplish this.