aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazel
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2017-12-11 16:03:40 -0800
committerGravatar Alexander Polcyn <apolcyn@google.com>2017-12-11 16:03:40 -0800
commitb94346f54103f3dcdfd02eed016b2a75aa3e6668 (patch)
tree37882cad0fe9ab2fff43ffe6d030e60ac572c6ed /bazel
parenta25697095b39ce4014457a64c2917c5abadbe998 (diff)
pass intended invocation args to bazel tests under poller script
Diffstat (limited to 'bazel')
-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..0f9260870c 100644
--- a/bazel/grpc_build_system.bzl
+++ b/bazel/grpc_build_system.bzl
@@ -98,7 +98,7 @@ def grpc_cc_test(name, srcs = [], deps = [], external_deps = [], args = [], data
args = [
poller,
'$(location %s)' % name
- ],
+ ] + args['args'],
)
else:
native.cc_test(**args)