thepudds
thepudds
Most likely this can be done with the go-bindata-assetfs package, which is already vendored. Here is a sample `go:generate` in the current go-fuzz that could be used as a starting...
@josharian fyi, I filed #279 to track a potentially related issue. I suspect you might have been using https://github.com/kevinburke/go-bindata installed locally on your machine in the most recent `go generate`...
Conceptually, this seems reasonable and useful, and hopefully helps with modules support introducing greater chances of version skew with modules. The initial platforms are passing in travis... (I did not...
I constructed a simple synthetic example (at the bottom) to try to illustrate a potential difference here. I then did a [quick modification of go-fuzz-build/cover.go](https://github.com/thepudds/go-fuzz/compare/master..5bcb707#diff-543452ae3f3d91b45eaeac22e9fda705R921), and saw a reasonably good...
One additional set of quick data points. A different [branch](https://github.com/thepudds/go-fuzz/tree/5df92f67d22405b1191818a9f6de3d699eeecaae) can now use two previous locations to xor (as well as there is a constant at the top of go-fuzz-build/cover.go...
@dvyukov, thanks for taking a look at this, and thanks for the comments. While this is fresh, I am going to make a quick reply now (without waiting a few...
Very nice. @egonelbre One quick comment -- to get alternate orderings at the application level, [github.com/mschoch/smat](https://github.com/mschoch/smat) ("State Machine Assisted Testing") is a nice small package that layers on top of...
Sorry, I know this is a closed issue, but I am curious if anyone has a working example of a Fuzz function that triggers a race detection with `-race` specified...
This might be related to GOMAXPROCS if go-fuzz is setting GOMAXPROCS=1. Using that same example from the prior comment with a `main` func added, this does not trigger a race...
> Maybe we could do both things? That makes sense to me as an approach, or at least something we could try. If it works, then hopefully the documentation could...