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

Method run_tests

deps/v8/tools/dev/gm.py:519–530  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

517 return return_code
518
519 def run_tests(self):
520 if not self.tests:
521 return 0
522 if "ALL" in self.tests:
523 tests = ""
524 else:
525 tests = " ".join(self.tests)
526 run_tests = V8_DIR / "tools" / "run-tests.py"
527 test_runner_args = " ".join(self.testrunner_args)
528 return _call(
529 f'"{sys.executable }" {run_tests} --outdir={self.path} {tests} {test_runner_args}'
530 )
531
532
533# Contrary to RawConfig, takes arch and mode, and sets everything up

Callers 2

run_testsMethod · 0.45
mainFunction · 0.45

Calls 2

_callFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected