Lines Matching refs:configuration
122 def __init__(self, old_version, new_version, configuration):
127 configuration.report_dir: directory for output files
128 configuration.keep_all_reports: if false, delete old reports
129 configuration.brief: if true, output shorter report to stdout
130 configuration.check_abi: if true, compare ABIs
131 configuration.check_api: if true, compare APIs
132 configuration.check_storage: if true, compare storage format tests
133 configuration.skip_file: path to file containing symbols and types to skip
137 self.verbose = configuration.verbose
139 self.report_dir = os.path.abspath(configuration.report_dir)
140 self.keep_all_reports = configuration.keep_all_reports
145 self.skip_file = configuration.skip_file
146 self.check_abi = configuration.check_abi
147 self.check_api = configuration.check_api
150 self.check_storage_tests = configuration.check_storage
151 self.brief = configuration.brief
649 configuration = SimpleNamespace(
659 abi_check = AbiChecker(old_version, new_version, configuration)