Files
rk35xx-android14/external/cronet/testing/libfuzzer/tests/check_fuzzer_config.py
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

27 lines
783 B
Python
Executable File

#!/usr/bin/env python3
# Copyright 2015 The Chromium Authors
# 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 os
import sys
if sys.version_info.major == 2:
from ConfigParser import ConfigParser
else:
from configparser import ConfigParser
OPTIONS_SECTION_LIBFUZZER = 'libfuzzer'
config_path = os.path.join(os.path.dirname(sys.argv[0]), sys.argv[1])
fuzzer_config = 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))