Lines Matching refs:self
30 def __init__(self, *args, **kwargs):
31 super(NumFuzzer, self).__init__(*args, **kwargs)
34 def framework_name(self):
37 def _add_parser_options(self, parser):
102 def _process_options(self, options):
121 def _get_default_suite_names(self):
124 def _runner_flags(self):
132 def _get_statusfile_variables(self, options):
134 super(NumFuzzer, self)._get_statusfile_variables(options))
149 def _do_execute(self, tests, args, options):
153 combiner = self._create_combiner(fuzzer_rng, options)
154 results = self._create_result_tracker(options)
156 sigproc = self._create_signal_proc()
157 indicators = self._create_progress_indicators(
165 self._create_shard_proc(options),
168 self._create_fuzzer(fuzzer_rng, options),
172 self._create_timeout_proc(options),
173 self._create_rerun_proc(options),
176 self._prepare_procs(procs)
197 def _is_testsuite_supported(self, suite, options):
200 def _create_combiner(self, rng, options):
206 def _create_fuzzer(self, rng, options):
209 self._tests_count(options),
210 self._create_fuzzer_configs(options),
211 self._disable_analysis(options),
214 def _tests_count(self, options):
219 def _disable_analysis(self, options):
223 def _create_fuzzer_configs(self, options):