From 31464a42835a4ff4ab477b70519711729d54fd11 Mon Sep 17 00:00:00 2001 From: Lizan Zhou Date: Mon, 13 Jul 2020 18:53:39 -0700 Subject: [PATCH 1/2] ci: temproray disable vhds_integration_test in TSAN Signed-off-by: Lizan Zhou --- .bazelrc | 2 ++ test/integration/BUILD | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.bazelrc b/.bazelrc index 71f457fb5e4a..b88d5079faee 100644 --- a/.bazelrc +++ b/.bazelrc @@ -81,6 +81,8 @@ build:clang-tsan --define ENVOY_CONFIG_TSAN=1 build:clang-tsan --copt -fsanitize=thread build:clang-tsan --linkopt -fsanitize=thread build:clang-tsan --linkopt -fuse-ld=lld +build:clang-tsan --build_tag_filters=-no_san,-no_tsan +build:clang-tsan --test_tag_filters=-no_san,-no_tsan # Needed due to https://github.com/libevent/libevent/issues/777 build:clang-tsan --copt -DEVENT__DISABLE_DEBUG_MODE diff --git a/test/integration/BUILD b/test/integration/BUILD index 5fe7aa10a5f1..a8ed5cb5dbcc 100644 --- a/test/integration/BUILD +++ b/test/integration/BUILD @@ -217,7 +217,11 @@ envoy_cc_test( data = [ "//test/config/integration/certs", ], - tags = ["fails_on_windows"], + tags = [ + "fails_on_windows", + # https://github.com/envoyproxy/envoy/issues/9784 + "no_tsan", + ], deps = [ ":http_integration_lib", "//source/common/config:protobuf_link_hacks", From 684262e8f66fe65347addb0fd35896687e794627 Mon Sep 17 00:00:00 2001 From: Lizan Zhou Date: Mon, 13 Jul 2020 20:53:11 -0700 Subject: [PATCH 2/2] fix merge race caused by #10254 Signed-off-by: Lizan Zhou --- test/per_file_coverage.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/per_file_coverage.sh b/test/per_file_coverage.sh index e06bf489cb07..8dd9531fc065 100755 --- a/test/per_file_coverage.sh +++ b/test/per_file_coverage.sh @@ -42,6 +42,7 @@ declare -a KNOWN_LOW_COVERAGE=( "source/extensions/quic_listeners/quiche:84.8" "source/extensions/retry:95.5" "source/extensions/retry/host:85.7" +"source/extensions/retry/host/omit_canary_hosts:92.9" "source/extensions/stat_sinks/statsd:85.2" "source/extensions/tracers:96.5" "source/extensions/tracers/opencensus:92.4"