| 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))
|
|
|