Lines Matching refs:go
22 # Emit Go code for the example schema in the test dir:
25 # Go requires a particular layout of files in order to link multiple packages.
26 # Copy flatbuffer Go files to their own package directories to compile the
29 mkdir -p ${go_src}/github.com/google/flatbuffers/go
32 cp -a MyGame/Example/*.go ./go_gen/src/MyGame/Example/
33 cp -a ../go/* ./go_gen/src/github.com/google/flatbuffers/go
34 cp -a ./go_test.go ./go_gen/src/flatbuffers_test/
39 # go -test -test.v ...
42 # go -test -test.bench=. ...
43 GOPATH=${go_path} go test flatbuffers_test \
44 --test.coverpkg=github.com/google/flatbuffers/go \
56 echo "OK: Go tests passed."
58 echo "KO: Go tests failed."