From 7d38c201faf7eb56fe4effdb0acd45c657f0286a Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Fri, 5 Jun 2020 10:33:51 -0700 Subject: [PATCH] Enabled conformance tests to run under ASAN. This apears to work now. (#292) --- kokoro/ubuntu/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kokoro/ubuntu/build.sh b/kokoro/ubuntu/build.sh index 3888d15f6a..c0261a7588 100644 --- a/kokoro/ubuntu/build.sh +++ b/kokoro/ubuntu/build.sh @@ -24,7 +24,7 @@ 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 + bazel test --copt=-fsanitize=address --linkopt=-fsanitize=address --test_output=errors :all # Verify the UBSan build. Have to exclude Lua as the version we are using # fails some UBSan tests.