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

Method load_initial_tests

deps/v8/tools/testrunner/testproc/loader.py:18–27  ·  view source on GitHub ↗

Send an initial batch of tests down to executor

(self)

Source from the content-addressed store, hash-verified

16
17
18 def load_initial_tests(self):
19 """Send an initial batch of tests down to executor"""
20 if not self.initial_batch_size:
21 return
22 to_load = self.initial_batch_size
23 for t in self.tests:
24 if self._send_test(t):
25 to_load -= 1
26 if not to_load:
27 break
28
29 def next_test(self, test):
30 assert False, \

Callers 8

_do_executeMethod · 0.95
_do_executeMethod · 0.95
_testMethod · 0.95
test_initMethod · 0.80
test_init_filter_1Method · 0.80
test_init_infinityMethod · 0.80
test_init_0Method · 0.80

Calls 1

_send_testMethod · 0.80

Tested by 6

_testMethod · 0.76
test_initMethod · 0.64
test_init_filter_1Method · 0.64
test_init_infinityMethod · 0.64
test_init_0Method · 0.64