Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GO15VENDOREXPERIMENT is not supported #109

Closed
bigwhite opened this issue Dec 7, 2015 · 2 comments
Closed

GO15VENDOREXPERIMENT is not supported #109

bigwhite opened this issue Dec 7, 2015 · 2 comments

Comments

@bigwhite
Copy link

bigwhite commented Dec 7, 2015

hi,
I met a problem when I used go-fuzz-build on my gocmpp project, details like below:

$go-fuzz-build github.com/bigwhite/gocmpp
can't find imported package golang.org/x/text/transform

I have checked the env for several times and make sure that golang.org/x/text/transform is at its right place.

Any ideas? Thanks for your time.

@DavidVorick
Copy link

have you tried

go get -u ./...?

Also, there have been a few times in go where a library/utililty didn't upgrade from 1.4 to 1.5 when everything else did.

@bigwhite
Copy link
Author

bigwhite commented Dec 7, 2015

I found the reason. It seems like the go-fuzz-build does not support the vendor mechanism in go 1.5(and later). I turn off the vendor experiment flag and execute go-fuzz-build again, and it works:

$GO15VENDOREXPERIMENT="0" go-fuzz-build github.com/bigwhite/gocmpp
$ls
LICENSE         activetest_test.go  conn_test.go        deliver_test.go     fwd_test.go     receipt_test.go     terminate.go
Makefile        client.go       connect.go      examples/       packet.go       server.go       terminate_test.go
README.md       cmpp-fuzz.zip       connect_test.go     fuzz.go         packet_test.go      submit.go       utils/
activetest.go       conn.go         deliver.go      fwd.go          receipt.go      submit_test.go      vendor/

@bigwhite bigwhite closed this as completed Dec 7, 2015
@dvyukov dvyukov changed the title go-fuzz-build: "can't find imported package golang.org/x/text/transform"(darwin amd64) GO15VENDOREXPERIMENT is not supported Dec 7, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants