diff options
author | adelez <adelez@google.com> | 2017-11-27 11:02:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-27 11:02:50 -0800 |
commit | b3a35623e3b9d89543d31556a7c5213a0ae3bf5f (patch) | |
tree | 963a24f529e49383e61968f38972f88c3aa6d424 /test | |
parent | de93112a3f70afa39d3e9aa87da165f9f737fdef (diff) | |
parent | d87f2ba4e4979e2c8def4922d927243503a80e7b (diff) |
Merge pull request #13419 from nlopezgi/master
change use of directory as input to data field for to use of native.glob in grpc_fuzzer.bzl
Diffstat (limited to 'test')
-rw-r--r-- | test/core/util/grpc_fuzzer.bzl | 3 |
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', ], |