1
0
mirror of https://github.com/golang/go synced 2024-11-24 16:30:17 -07:00

internal/fuzz: tiny refactor+fix

Change-Id: I8db9c31ead3e5905b7f9d1faed36555e8aaa00cd
Reviewed-on: https://go-review.googlesource.com/c/go/+/358054
Trust: Katie Hockman <katie@golang.org>
Run-TryBot: Katie Hockman <katie@golang.org>
Reviewed-by: Julie Qiu <julie@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
This commit is contained in:
Katie Hockman 2021-10-22 11:37:28 -04:00
parent 76cef81bcf
commit 1dc77a38d2
2 changed files with 2 additions and 2 deletions

View File

@ -702,7 +702,7 @@ func (c *coordinator) logStats() {
interestingTotalCount := int64(c.warmupInputCount-len(c.opts.Seed)) + c.interestingCount interestingTotalCount := int64(c.warmupInputCount-len(c.opts.Seed)) + c.interestingCount
fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, execs: %d (%.0f/sec), new interesting: %d (total: %d)\n", c.elapsed(), c.count, rate, c.interestingCount, interestingTotalCount) fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, execs: %d (%.0f/sec), new interesting: %d (total: %d)\n", c.elapsed(), c.count, rate, c.interestingCount, interestingTotalCount)
} else { } else {
fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, execs: %d (%.0f/sec)", c.elapsed(), c.count, rate) fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, execs: %d (%.0f/sec)\n", c.elapsed(), c.count, rate)
} }
} }
c.countLastLog = c.count c.countLastLog = c.count

View File

@ -1088,7 +1088,7 @@ func (wc *workerClient) fuzz(ctx context.Context, entryIn CorpusEntry, args fuzz
wc.m.r.restore(mem.header().randState, mem.header().randInc) wc.m.r.restore(mem.header().randState, mem.header().randInc)
if !args.Warmup { if !args.Warmup {
// Only mutate the valuesOut if fuzzing actually occurred. // Only mutate the valuesOut if fuzzing actually occurred.
for i := int64(0); i < mem.header().count; i++ { for i := int64(0); i < resp.Count; i++ {
wc.m.mutate(valuesOut, cap(mem.valueRef())) wc.m.mutate(valuesOut, cap(mem.valueRef()))
} }
} }