Added Kokoro verification of the ASAN build. (#220)

pull/13171/head
Joshua Haberman 5 years ago committed by GitHub
parent 378cbbc3cc
commit ef25ea5281
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      kokoro/ubuntu/build.sh

@ -14,3 +14,9 @@ bazel version
cd $(dirname $0)/../..
bazel test --test_output=errors :all
if [[ $(uname) = "Linux" ]]; then
# Verify the ASAN build. Have to exclude test_conformance_upb as protobuf
# currently leaks memory in the conformance test runner.
bazel test --copt=-fsanitize=address --linkopt=-fsanitize=address --test_output=errors -- :all -:test_conformance_upb
fi

Loading…
Cancel
Save