Commit edbc27fb authored by Yannic Bonenberger's avatar Yannic Bonenberger Committed by Adam Cozzette

Print logs of failing tests

parent 27e85ab5
......@@ -7,11 +7,24 @@ set -ex
use_bazel.sh latest
bazel version
# Print bazel testlogs to stdout when tests failed.
function print_test_logs {
# TODO(yannic): Only print logs of failing tests.
testlogs_dir=$(bazel info bazel-testlogs)
testlogs=$(find "${testlogs_dir}" -name "*.log")
for log in $testlogs; do
cat "${log}"
done
}
# Change to repo root
cd $(dirname $0)/../../..
git submodule update --init --recursive
trap print_test_logs EXIT
bazel test :build_files_updated_unittest :protobuf_test --copt=-Werror --host_copt=-Werror
trap - EXIT
cd examples
bazel build :all
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment