summaryrefslogtreecommitdiff
path: root/src/testing/fuzz.go
Commit message (Expand)AuthorAgeFilesLines
* all: fix typos in go file commentsMarcel Meyer2023-01-091-1/+1
* testing: implement -cpu and -count for fuzz testsRuss Cox2022-11-021-42/+60
* testing: fix many test2json inaccuraciesRuss Cox2022-10-261-5/+10
* cmd/go, testing: add go test -skip flagRuss Cox2022-09-161-3/+3
* testing: use strings.Buildercuiweixie2022-09-071-2/+2
* testing: convert numFailed to atomic typecuiweixie2022-08-291-2/+1
* all: gofmt main repoRuss Cox2022-04-111-1/+1
* testing: panic in Fuzz if the function returns a valueBryan C. Mills2022-02-161-0/+3
* testing: only snapshot coverage during fuzzingRoland Shoemaker2022-01-101-2/+4
* testing: fix deadlock with t.Parallel in testing seed corpusKatie Hockman2022-01-061-4/+5
* all: fix spelling errors found by misspellDan Kortschak2021-12-201-1/+1
* all: fix typo in commentichxxx2021-12-151-1/+1
* testing: update docs for fuzzcachedirKatie Hockman2021-12-131-2/+3
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-131-5/+5
* testing: simplify fuzzResult.String to avoid unnecessarily using fmt.Sprintfsivchari2021-11-271-4/+2
* all: update terminology for fuzzingKatie Hockman2021-11-111-68/+70
* testing: remove package from fuzz crasher messageKatie Hockman2021-11-091-1/+1
* testing: don't allow f.Log/Logf or f.Skipped inside f.FuzzKatie Hockman2021-10-191-125/+22
* testing: write output to buffer when fuzzingKatie Hockman2021-10-191-8/+20
* testing: don't create unique subtest names while fuzzingJay Conrod2021-10-121-1/+8
* testing: fix -run behavior with fuzz testsKatie Hockman2021-10-121-17/+21
* testing: document f.Fuzz requirement to not change underlying dataKatie Hockman2021-10-051-4/+5
* testing: address feedback for dev.fuzz mergeJay Conrod2021-09-241-46/+39
* internal/fuzz: allocate memory for mutated stringsRoland Shoemaker2021-09-221-1/+4
* [dev.fuzz] Revert "[dev.fuzz] testing: convert seed corpus values where possi...Katie Hockman2021-09-201-1/+1
* [dev.fuzz] internal/fuzz: rework default test behavior before fuzzingKatie Hockman2021-09-161-6/+18
* [dev.fuzz] testing: adjust -fuzz multiple match stdoutKatie Hockman2021-09-151-6/+12
* [dev.fuzz] testing: F.Setenv plus various fixes and revisionsJay Conrod2021-09-101-66/+84
* [dev.fuzz] testing: allow -fuzzminimizetime to be 0Katie Hockman2021-09-101-1/+1
* [dev.fuzz] testing: move corpus from testdata/corpus to testdata/fuzzKatie Hockman2021-09-101-2/+2
* [dev.fuzz] internal/fuzz: don't store corpus in memoryRoland Shoemaker2021-09-021-11/+23
* [dev.fuzz] cmd/go: stream output when fuzzingJay Conrod2021-09-011-29/+27
* [dev.fuzz] all: merge master (c95464f) into dev.fuzzKatie Hockman2021-06-281-0/+5
* [dev.fuzz] internal/fuzz: use scratch []byte for mutationsKatie Hockman2021-06-281-2/+11
* [dev.fuzz] testing: report T.Deadline when running seed valuesJay Conrod2021-06-241-1/+2
* [dev.fuzz] testing: capture coverage even if tRunner failedRoland Shoemaker2021-06-231-1/+5
* [dev.fuzz] testing: convert seed corpus values where possibleKatie Hockman2021-06-151-1/+13
* [dev.fuzz] testing: fix documentation for fuzzminimizetimeKatie Hockman2021-06-071-1/+1
* [dev.fuzz] internal/fuzz: add additional debug loggingRoland Shoemaker2021-06-071-3/+5
* [dev.fuzz] internal/fuzz,testing: treat panics as recoverableRoland Shoemaker2021-05-271-1/+5
* [dev.fuzz] internal/fuzz: make minimization tests more reliableJay Conrod2021-05-191-7/+18
* [dev.fuzz] internal/fuzz: move coverage capture closer to functionRoland Shoemaker2021-05-191-4/+12
* [dev.fuzz] testing,internal/fuzz: prevent unbounded memory growthRoland Shoemaker2021-05-071-8/+6
* [dev.fuzz] testing: support T.Parallel in fuzz functionsJay Conrod2021-04-091-20/+62
* [dev.fuzz] testing: let -fuzztime specify a number of executionsJay Conrod2021-04-091-4/+4
* [dev.fuzz] internal/fuzz: improve cancellation in worker event loopsJay Conrod2021-04-091-1/+1
* [dev.fuzz] testing: print logs and error messages when fuzzingKatie Hockman2021-03-191-17/+27
* [dev.fuzz] testing: use exit status 70 for worker errors (not crashes)Jay Conrod2021-03-091-3/+11
* [dev.fuzz] testing, internal/fuzz: multiple small fixesJay Conrod2021-03-091-1/+30
* [dev.fuzz] testing,internal/fuzz: support structured inputsKatie Hockman2021-02-231-24/+67