53 lines
2.0 KiB
Bash
Executable File
53 lines
2.0 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
# Copyright 2014 Google Inc. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
pushd "$(dirname $0)" >/dev/null
|
|
test_dir="$(pwd)"
|
|
go_path=${test_dir}/go_gen
|
|
go_src=${go_path}/src
|
|
|
|
# Emit Go code for the example schema in the test dir:
|
|
../flatc -g monster_test.fbs
|
|
|
|
# Go requires a particular layout of files in order to link multiple packages.
|
|
# Copy flatbuffer Go files to their own package directories to compile the
|
|
# test binary:
|
|
mkdir -p ${go_src}/MyGame/Example
|
|
mkdir -p ${go_src}/github.com/google/flatbuffers/go
|
|
mkdir -p ${go_src}/flatbuffers_test
|
|
|
|
cp -u MyGame/Example/*.go ./go_gen/src/MyGame/Example/
|
|
cp -u ../go/* ./go_gen/src/github.com/google/flatbuffers/go
|
|
cp -u ./go_test.go ./go_gen/src/flatbuffers_test/
|
|
|
|
# Run tests with necessary flags.
|
|
# Developers may wish to see more detail by appending the verbosity flag
|
|
# -test.v to arguments for this command, as in:
|
|
# go -test -test.v ...
|
|
# Developers may also wish to run benchmarks, which may be achieved with the
|
|
# flag -test.bench and the wildcard regexp ".":
|
|
# go -test -test.bench=. ...
|
|
GOPATH=${go_path} go test flatbuffers_test \
|
|
--test.coverpkg=github.com/google/flatbuffers/go \
|
|
--cpp_data=${test_dir}/monsterdata_test.bin \
|
|
--out_data=${test_dir}/monsterdata_go_wire.bin \
|
|
--fuzz=true \
|
|
--fuzz_fields=4 \
|
|
--fuzz_objects=10000
|
|
|
|
rm -rf ${go_path}/{pkg,src}
|
|
|
|
echo "OK: Go tests passed."
|