thepudds
thepudds
Hi @naveensrinivasan, just a quick comment for now, but one way to check your dependencies is to do `go mod vendor`, and then do a recursive grep of resulting `./vendor`...
You can try: ``` go-fuzz-build -preserve=cuelang.org/go/pkg/math ```
Hi @hidu, thanks for sending this PR. I'm not sure if it is the right fix though? I suspect it might workaround the immediate error you were seeing, but I...
Hi @disconnect3d, when you say this PR is needed to work with "latest Go versions or/and in IDEs like Goland", are you referring to whether or not go-fuzz is a...
Try `cd ~/go/src/github.com/dvyukov/go-fuzz-corpus` (or something similar to that if you happen to be on windows).
Also, if you are using [Go modules](https://golang.org/doc/modules/managing-dependencies), you might need to use git clone.
I have been thinking a bit about this recently in the context of golang/go#19109. Especially as fuzz functions hopefully become more common, it would be quite nice to be able...
Hi @josharian, sorry, my comment was not very clear. I did not mean to suggest that I think you should do additional work now beyond what you were contemplating. I...
Hi @dvyukov 👋 Yes, I support this in https://github.com/thepudds/fzgo Rich signatures like FuzzRegexp(re string, input []byte, posix bool) are supported, as well as the classic Fuzz(data []byte) int form used...
@josharian Is the thinking that this would be the best approach (now that overlays of entire packages are supported): > Use codegen to embed the support package into go-fuzz-build and...