aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/util/grpc_fuzzer.bzl
diff options
context:
space:
mode:
authorGravatar Nicolas Lopez <ngiraldo@google.com>2017-11-16 12:58:31 -0500
committerGravatar Nicolas Lopez <ngiraldo@google.com>2017-11-16 12:58:34 -0500
commitd87f2ba4e4979e2c8def4922d927243503a80e7b (patch)
treeca1ed86b1060a97e159dd56de8b8c9ed792b83a4 /test/core/util/grpc_fuzzer.bzl
parent57a66242d05947c3a2819c8e6e43dbdb3204e325 (diff)
change directory input to use of native.glob
use of directory as input to data is not supported with experimental remote execution build service.
Diffstat (limited to 'test/core/util/grpc_fuzzer.bzl')
-rw-r--r--test/core/util/grpc_fuzzer.bzl3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/core/util/grpc_fuzzer.bzl b/test/core/util/grpc_fuzzer.bzl
index 55b6f1c1a5..b8b270ecd0 100644
--- a/test/core/util/grpc_fuzzer.bzl
+++ b/test/core/util/grpc_fuzzer.bzl
@@ -19,8 +19,7 @@ def grpc_fuzzer(name, corpus, srcs = [], deps = [], **kwargs):
name = name,
srcs = srcs,
deps = deps + ["//test/core/util:fuzzer_corpus_test"],
- data = [corpus],
- args = ['--directory', '$(location %s)' % corpus],
+ data = native.glob([corpus + "/**"]),
external_deps = [
'gtest',
],