disable a few macos bazel tests

pull/20510/head
Jan Tattermusch 6 years ago
parent 6950e15882
commit 5d352ded8b
  1. 5
      test/core/iomgr/BUILD
  2. 20
      test/cpp/microbenchmarks/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",

@ -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"],
)

Loading…
Cancel
Save