MCPcopy Index your code
hub / github.com/nodejs/node / get_runner_options

Method get_runner_options

deps/v8/tools/testrunner/utils/test_utils.py:227–232  ·  view source on GitHub ↗

Returns a list of all flags parsed by the test runner.

(self, baseroot='testroot1')

Source from the content-addressed store, hash-verified

225 stdout.getvalue(), stderr.getvalue(), code, json_out, test_schedule, self)
226
227 def get_runner_options(self, baseroot='testroot1'):
228 """Returns a list of all flags parsed by the test runner."""
229 with temp_base(baseroot=baseroot) as basedir:
230 runner = self.get_runner_class()(basedir=basedir)
231 parser = runner._create_parser()
232 return [i.get_opt_string() for i in parser.option_list]
233
234 def get_runner_class():
235 """Implement to return the runner class"""

Callers 1

testNumFuzzerMethod · 0.80

Calls 3

get_runner_classMethod · 0.95
temp_baseFunction · 0.85
_create_parserMethod · 0.80

Tested by

no test coverage detected