-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
fzgo should support modules now that dvyukov/go-fuzz supports modules #15
Comments
Note that modules can usually be fuzzed by placing the code under test in the proper locations in GOPATH and explicitly disable module mode for cmd/go by setting |
For full-blown modules support, there are at least three issues. The first issue is that in modules mode, cmd/go rejects the temporary
If we resolve that, the second issue is we might need to create a temporary A third issue is the code under test might itself have Maybe? A completely different approach would be to completely materialize the modules world view into an equivalent GOPATH. That would be a bigger change, and less of a step forward. |
dvyukov/go-fuzz supports modules now (dvyukov/go-fuzz#274), so it is now feasible to support modules with fzgo.
The text was updated successfully, but these errors were encountered: