aboutsummaryrefslogtreecommitdiff
path: root/src/testing/fuzz.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing/fuzz.go')
-rw-r--r--src/testing/fuzz.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/testing/fuzz.go b/src/testing/fuzz.go
index 6773b7161d..766242f75d 100644
--- a/src/testing/fuzz.go
+++ b/src/testing/fuzz.go
@@ -256,13 +256,6 @@ type fuzzContext struct {
runFuzzWorker func(func([]byte) error) error
}
-// RunFuzzTargets is an internal function but exported because it is cross-package;
-// it is part of the implementation of the "go test" command.
-func RunFuzzTargets(matchString func(pat, str string) (bool, error), fuzzTargets []InternalFuzzTarget) (ok bool) {
- _, ok = runFuzzTargets(matchString, fuzzTargets)
- return ok
-}
-
// runFuzzTargets runs the fuzz targets matching the pattern for -run. This will
// only run the f.Fuzz function for each seed corpus without using the fuzzing
// engine to generate or mutate inputs.