aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazel/grpc_build_system.bzl
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-12-07 11:40:18 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-12-07 11:40:18 -0800
commite55fb8aaa88651cda047f138963fa96d4fcd5460 (patch)
treea2614bc92f3bf9ec2be506e3b017a0d14f69998f /bazel/grpc_build_system.bzl
parent84d78acfa41a1263ba75b46dd4e857e02ea2cb96 (diff)
Allow running tests directly (default poller, foundry wont see them)
Diffstat (limited to 'bazel/grpc_build_system.bzl')
-rw-r--r--bazel/grpc_build_system.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bazel/grpc_build_system.bzl b/bazel/grpc_build_system.bzl
index 2ef8544502..bab66ac90b 100644
--- a/bazel/grpc_build_system.bzl
+++ b/bazel/grpc_build_system.bzl
@@ -87,7 +87,7 @@ def grpc_cc_test(name, srcs = [], deps = [], external_deps = [], args = [], data
'linkopts': ["-pthread"],
}
if uses_polling:
- native.cc_binary(testonly=True, **args)
+ native.cc_test(testonly=True, tags=['manual'], **args)
for poller in POLLERS:
native.sh_test(
name = name + '@poller=' + poller,