aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/buildgen
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-03-29 21:22:37 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-03-29 21:22:37 -0700
commit71f81852a70ce804374349a975a866045030b049 (patch)
tree5ab51a809c0c4bd6ddb71bd0a8183c0164632c14 /tools/buildgen
parentf05837ab8202b87e14039b9d50a71cb7d47ffe80 (diff)
Sort tests
Diffstat (limited to 'tools/buildgen')
-rw-r--r--tools/buildgen/plugins/make_fuzzer_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildgen/plugins/make_fuzzer_tests.py b/tools/buildgen/plugins/make_fuzzer_tests.py
index a9285d0452..8df7ae407b 100644
--- a/tools/buildgen/plugins/make_fuzzer_tests.py
+++ b/tools/buildgen/plugins/make_fuzzer_tests.py
@@ -44,7 +44,7 @@ def mako_plugin(dictionary):
new_target['deps'].insert(0, 'one_input_fuzzer')
targets.append(new_target)
for corpus in new_target['corpus_dirs']:
- for fn in glob.glob('%s/*' % corpus):
+ for fn in sorted(glob.glob('%s/*' % corpus)):
tests.append({
'name': new_target['name'],
'args': [fn],