From: Ian Lance Taylor Date: Thu, 23 Dec 2021 23:57:54 +0000 (-0800) Subject: doc/go1.18: mention new cmd/go fuzzing flags X-Git-Tag: go1.18beta2~172 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1c8f9d2c97db7390a7ed2cd4663571b544147f4d;p=gostls13.git doc/go1.18: mention new cmd/go fuzzing flags For #47694 Change-Id: I00da9bd39700e938ec492daa71aba2035d911a06 Reviewed-on: https://go-review.googlesource.com/c/go/+/374354 Trust: Ian Lance Taylor Trust: Katie Hockman Reviewed-by: Katie Hockman --- diff --git a/doc/go1.18.html b/doc/go1.18.html index 4907dd6e2d..a5d7dcfcc5 100644 --- a/doc/go1.18.html +++ b/doc/go1.18.html @@ -304,6 +304,27 @@ Do not send CLs removing the interior tags from such phrases. file to specify the single main module.

+

+ The go command now supports additional command line + options for the new fuzzing support described + above: +

    +
  • + go test supports + -fuzz, -fuzztime, and + -fuzzminimizetime options. + For documentation on these see + go help testflag. +
  • +
  • + go clean supports a -fuzzcache + option. + For documentation see + go help clean. +
  • +
+

+

gofmt

@@ -979,7 +1000,9 @@ Do not send CLs removing the interior tags from such phrases.

The new testing.F type is used by the new fuzzing support described - above. + above. Tests also now support the command line + options -test.fuzz, -test.fuzztime, and + -test.fuzzminimizetime.