aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/buildgen/plugins/make_fuzzer_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildgen/plugins/make_fuzzer_tests.py')
-rw-r--r--tools/buildgen/plugins/make_fuzzer_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildgen/plugins/make_fuzzer_tests.py b/tools/buildgen/plugins/make_fuzzer_tests.py
index 806489bcd2..e8e1bd0aa6 100644
--- a/tools/buildgen/plugins/make_fuzzer_tests.py
+++ b/tools/buildgen/plugins/make_fuzzer_tests.py
@@ -41,7 +41,8 @@ def mako_plugin(dictionary):
new_target['build'] = 'test'
new_target['name'] += '_one_entry'
new_target['run'] = False
- new_target['deps'].insert(0, 'one_input_fuzzer')
+ new_target['src'].append('test/core/util/one_corpus_entry_fuzzer.c')
+ new_target['own_src'].append('test/core/util/one_corpus_entry_fuzzer.c')
targets.append(new_target)
for corpus in new_target['corpus_dirs']:
for fn in sorted(glob.glob('%s/*' % corpus)):