utls/fuzz
Jay Conrod 0234baf05d [dev.fuzz] internal/fuzz: count -fuzzminimizetime toward -fuzztime
Previously, when -fuzztime was given a number of executions like
-fuzztime=100x, this was a count for each minimization independent of
-fuzztime. Since there is no bound on the number of minimizations,
this was not a meaningful limit.

With this change, executions of the fuzz function during minimization
count toward the -fuzztime global limit. Executions are further
limited by -fuzzminimizetime.

This change also counts executions during the coverage-only run and
reports errors for those executions.

There is no change when -fuzztime specifies a duration or when
-fuzztime is not set.

Change-Id: Ibcf1b1982f28b28f6625283aa03ce66d4de0a26d
Reviewed-on: https://go-review.googlesource.com/c/go/+/342994
Trust: Jay Conrod <jayconrod@google.com>
Trust: Katie Hockman <katie@golang.org>
Run-TryBot: Jay Conrod <jayconrod@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Katie Hockman <katie@golang.org>
2021-08-31 17:53:40 +00:00
..
coverage.go [dev.fuzz] internal/fuzz: coarsen each coverage counter when taking a snapshot 2021-08-23 20:58:28 +00:00
encoding.go [dev.fuzz] internal/fuzz: allow float types to be integer literals 2021-04-12 18:51:16 +00:00
encoding_test.go [dev.fuzz] internal/fuzz: add more benchmarks for workers 2021-07-19 21:11:25 +00:00
fuzz.go [dev.fuzz] internal/fuzz: count -fuzzminimizetime toward -fuzztime 2021-08-31 17:53:40 +00:00
mem.go [dev.fuzz] internal/fuzz: avoid marshaling input before calling fuzz function 2021-07-20 00:06:06 +00:00
minimize.go [dev.fuzz] internal/fuzz: notify coordinator for minimization 2021-06-02 20:55:09 +00:00
minimize_test.go [dev.fuzz] internal/fuzz: notify coordinator for minimization 2021-06-02 20:55:09 +00:00
mutator.go [dev.fuzz] internal/fuzz: use scratch []byte for mutations 2021-06-28 16:34:17 +00:00
mutator_test.go [dev.fuzz] internal/fuzz: use scratch []byte for mutations 2021-06-28 16:34:17 +00:00
mutators_byteslice.go [dev.fuzz] internal/fuzz: refactor byte slice mutators 2021-06-22 04:10:24 +00:00
mutators_byteslice_test.go [dev.fuzz] internal/fuzz: avoid marshaling input before calling fuzz function 2021-07-20 00:06:06 +00:00
pcg.go [dev.fuzz] internal/fuzz: avoid marshaling input before calling fuzz function 2021-07-20 00:06:06 +00:00
sys_posix.go [dev.fuzz] internal/fuzz: improve handling of worker termination by signal 2021-07-08 16:39:05 +00:00
sys_unimplemented.go [dev.fuzz] internal/fuzz: improve handling of worker termination by signal 2021-07-08 16:39:05 +00:00
sys_windows.go [dev.fuzz] internal/fuzz: improve handling of worker termination by signal 2021-07-08 16:39:05 +00:00
trace.go [dev.fuzz] internal/fuzz: implement coverage and trace instrumentation 2021-04-09 17:19:43 +00:00
worker.go [dev.fuzz] internal/fuzz: count -fuzzminimizetime toward -fuzztime 2021-08-31 17:53:40 +00:00
worker_test.go [dev.fuzz] internal/fuzz: avoid marshaling input before calling fuzz function 2021-07-20 00:06:06 +00:00