From 5d352ded8b5565bdd80ad0bac9e56cf6f92e0fdb Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Wed, 2 Oct 2019 08:57:44 +0200 Subject: [PATCH] disable a few macos bazel tests --- test/core/iomgr/BUILD | 5 ++++- test/cpp/microbenchmarks/BUILD | 20 ++++++++++++++++---- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/test/core/iomgr/BUILD b/test/core/iomgr/BUILD index 7550d277aef..9b78d709734 100644 --- a/test/core/iomgr/BUILD +++ b/test/core/iomgr/BUILD @@ -254,7 +254,10 @@ grpc_cc_test( name = "tcp_posix_test", srcs = ["tcp_posix_test.cc"], language = "C++", - tags = ["no_windows"], + tags = [ + "no_windows", + "no_mac", # TODO(jtattermusch): Reenable once https://github.com/grpc/grpc/issues/21282 is fixed. + ], deps = [ ":endpoint_tests", "//:gpr", diff --git a/test/cpp/microbenchmarks/BUILD b/test/cpp/microbenchmarks/BUILD index fd5aff15063..d7d449e8fb7 100644 --- a/test/cpp/microbenchmarks/BUILD +++ b/test/cpp/microbenchmarks/BUILD @@ -136,7 +136,10 @@ grpc_cc_binary( srcs = [ "bm_fullstack_streaming_ping_pong.cc", ], - tags = ["no_windows"], + tags = [ + "no_windows", + "no_mac", # to emulate "excluded_poll_engines: poll" + ], deps = [":fullstack_streaming_ping_pong_h"], ) @@ -155,7 +158,10 @@ grpc_cc_binary( srcs = [ "bm_fullstack_streaming_pump.cc", ], - tags = ["no_windows"], + tags = [ + "no_windows", + "no_mac", # to emulate "excluded_poll_engines: poll" + ], deps = [":fullstack_streaming_pump_h"], ) @@ -163,7 +169,10 @@ grpc_cc_binary( name = "bm_fullstack_trickle", testonly = 1, srcs = ["bm_fullstack_trickle.cc"], - tags = ["no_windows"], + tags = [ + "no_windows", + "no_mac", # to emulate "excluded_poll_engines: poll" + ], deps = [":helpers"], ) @@ -182,7 +191,10 @@ grpc_cc_binary( srcs = [ "bm_fullstack_unary_ping_pong.cc", ], - tags = ["no_windows"], + tags = [ + "no_windows", + "no_mac", # to emulate "excluded_poll_engines: poll" + ], deps = [":fullstack_unary_ping_pong_h"], )