You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have hardcoded list of go-fuzz-dep dependencies.
This list constantly changes due to changes in std lib
(due various new internal packages).
Extract go-fuzz-dep dependencies automatically with 'go list'.
Fixesdvyukov#157
I stumbled across this bug and workaround. When running go-fuzz-build against a package that does not import "fmt" I get the following error:
code:
error:
However, when I add a dummy import of 'fmt' the error disappears and fuzzing works fine:
The text was updated successfully, but these errors were encountered: