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

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

Issue 1703523002: [libfuzzer] support of custom libfuzzer options via .options file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nits in check_fuzzer_config.py script and fuzzer_launcher_test.cc Created 4 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/dicts_subdir/test_subdir.dict » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/tests/check_fuzzer_config.py
diff --git a/testing/libfuzzer/tests/check_fuzzer_config.py b/testing/libfuzzer/tests/check_fuzzer_config.py
new file mode 100755
index 0000000000000000000000000000000000000000..6a4ea8e210c8ee82a092bac7b47a49c84486c59f
--- /dev/null
+++ b/testing/libfuzzer/tests/check_fuzzer_config.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python2
+# Copyright 2015 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 "option=value" from the config file. Used for testing.
+
+import ConfigParser
+import os
+import sys
+
+OPTIONS_SECTION_LIBFUZZER = 'libfuzzer'
+
+config_path = os.path.join(os.path.dirname(sys.argv[0]), sys.argv[1])
+fuzzer_config = ConfigParser.ConfigParser()
+fuzzer_config.read(config_path)
+
+if not fuzzer_config.has_section(OPTIONS_SECTION_LIBFUZZER):
+ sys.exit(-1)
+
+for option_name, option_value in fuzzer_config.items(OPTIONS_SECTION_LIBFUZZER):
+ sys.stdout.write('%s=%s\n' % (option_name, option_value))
« no previous file with comments | « testing/libfuzzer/tests/BUILD.gn ('k') | testing/libfuzzer/tests/dicts_subdir/test_subdir.dict » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698