summaryrefslogtreecommitdiff
path: root/grpc/tools/buildgen/plugins/make_fuzzer_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'grpc/tools/buildgen/plugins/make_fuzzer_tests.py')
-rw-r--r--grpc/tools/buildgen/plugins/make_fuzzer_tests.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/grpc/tools/buildgen/plugins/make_fuzzer_tests.py b/grpc/tools/buildgen/plugins/make_fuzzer_tests.py
index 788a5f5f..f691a22b 100644
--- a/grpc/tools/buildgen/plugins/make_fuzzer_tests.py
+++ b/grpc/tools/buildgen/plugins/make_fuzzer_tests.py
@@ -28,15 +28,11 @@ def mako_plugin(dictionary):
new_target['run'] = False
new_target['src'].append(
'test/core/util/one_corpus_entry_fuzzer.cc')
- new_target['own_src'].append(
- 'test/core/util/one_corpus_entry_fuzzer.cc')
# avoid having two main() methods
to_remove = 'test/core/util/fuzzer_corpus_test.cc'
if to_remove in new_target['src']:
new_target['src'].remove(to_remove)
- if to_remove in new_target['own_src']:
- new_target['own_src'].remove(to_remove)
targets.append(new_target)
for corpus in new_target['corpus_dirs']: