Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Unified Diff: testing/libfuzzer/tests/check_seed_corpus_archive.py

Issue 2610323002: [libfuzzer] support multiple seed_corpus directories. (Closed)
Patch Set: Add missing scripts Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/libfuzzer/tests/BUILD.gn ('k') | testing/libfuzzer/tests/fuzzer_launcher_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/tests/check_seed_corpus_archive.py
diff --git a/testing/libfuzzer/tests/check_seed_corpus_archive.py b/testing/libfuzzer/tests/check_seed_corpus_archive.py
new file mode 100755
index 0000000000000000000000000000000000000000..5bbabd4e7107ba270f1aae471bb640bc9aad648e
--- /dev/null
+++ b/testing/libfuzzer/tests/check_seed_corpus_archive.py
@@ -0,0 +1,20 @@
+#!/usr/bin/python2
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# Script that prints out number of files in given zip-archive. Used for testing.
+
+import ConfigParser
+import os
+import sys
+import zipfile
+
+seed_corpus_archive_path = os.path.join(os.path.dirname(sys.argv[0]),
+ sys.argv[1])
+
+if not os.path.exists(seed_corpus_archive_path):
+ sys.exit(-1)
+
+archive = zipfile.ZipFile(seed_corpus_archive_path)
+sys.stdout.write('%d\n' % len(archive.namelist()))
« no previous file with comments | « testing/libfuzzer/tests/BUILD.gn ('k') | testing/libfuzzer/tests/fuzzer_launcher_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698