Dmitry Vyukov

Results 530 comments of Dmitry Vyukov

@prologic Formally, it's never complete because there is infinite amount of input variations. If you are doing a one-off run, then I would say a weekend without crashes it good...

Where does static analysis and comparison interception fail? The more manual work we require the worse.

I agree that would be useful. But I am not sure what is the right solution. As you noted several solutions possible, all have some downsides. If you can work...

The proposal at https://github.com/golang/go/issues/19109#issuecomment-285456008 includes `-fuzzinput input` to run a single input (will be needed for continuous fuzzing integration (e.g. OSS-Fuzz) to minimize, bisect, re-test, etc). Assuming that build will...

@dgryski I am pretty sure we can improve the current minimization algorithm, so feel free to send a pull request if/when you do the comparison. What is time complexity of...

`CGO_ENABLED=0` is the best solution for now. Ultimately go-fuzz is integrated into Go compiler and build system, which would eliminate all these constant breakages related to cgo, vendoring, internal packages,...

@dgryski No, there is none. Feel free to file a one. Ideally Fuzz functions can be defined in test packages along with unit tests and benchmarks and then easily executed...

Can you parse the existing eventSource thing? It should be already exposing stats in json.

> I would like a single GET request that returns immediately, also ideally it would be in stdout So what do you need? A GET request or stdout? I am...

Re Fuzzi: looks like a great idea. In some cases we use fuzzer for unit testing. Namely: you can run it in continuous mode, use coverage and enlarge corpus; or...