/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | expectation.py | 16 subtest = self._create_subtest(test, 'no_timeout') 17 subtest.allow_timeouts() 18 subtest.allow_pass() 19 return self._send_test(subtest) 21 def _result_for(self, test, subtest, result):
|
H A D | rerun.py | 24 def _result_for(self, test, subtest, result): 26 if subtest.procid[-2:] == '-1': 54 subtest = self._create_subtest(test, str(run + 1), keep_output=(run != 0)) 55 return self._send_test(subtest)
|
H A D | variant.py | 44 def _result_for(self, test, subtest, result): 54 subtest = self._create_subtest(test, '%s-%s' % (variant, suffix), 56 if self._send_test(subtest):
|
H A D | base.py | 27 Each subtest has: 29 some suffix given by test processor, e.g. its name + subtest type. 177 def result_for(self, subtest, result): 178 self._result_for(subtest.origin, subtest, result) 184 def _result_for(self, test, subtest, result): 186 result_for method extended with `subtest` parameter. 189 test: test used by current processor to create the subtest. 190 subtest: test for which the `result` is. 191 result: subtest executio [all...] |
H A D | fuzzer.py | 146 def _result_for(self, test, subtest, result): 199 for subtest in self._gens[test.procid]: 200 if self._send_test(subtest):
|
H A D | seed.py | 18 seed: seed to use. None means random seed for each subtest. 19 parallel_subtests: How many subtest of each test to run at the same time. 43 def _result_for(self, test, subtest, result):
|
/third_party/openssl/test/testutil/ |
H A D | driver.c | 37 int subtest:1; member 51 * |num_test_cases| counts the total number of non-subtest test cases 70 int num, int subtest) in add_all_tests() 76 all_tests[num_tests].subtest = subtest; in add_all_tests() 78 if (subtest) in add_all_tests() 344 if (all_tests[i].subtest) { in run_tests() 380 if (all_tests[i].subtest) in run_tests() 390 if (all_tests[i].subtest) { in run_tests() 396 if (all_tests[i].num == -1 || all_tests[i].subtest) in run_tests() 69 add_all_tests(const char *test_case_name, int(*test_fn)(int idx), int num, int subtest) add_all_tests() argument [all...] |
/third_party/node/deps/v8/tools/testrunner/objects/ |
H A D | testcase.py | 87 self.origin = None # Test that this test is subtest of. 88 self.processor = None # Processor that created this subtest. 107 subtest = copy.copy(self) 108 subtest.origin = self 109 subtest.processor = processor 110 subtest.procid += '.%s' % subtest_id 111 subtest.keep_output |= keep_output 113 subtest._random_seed = random_seed 115 subtest.variant_flags = subtest [all...] |
/third_party/node/lib/internal/test_runner/ |
H A D | test.js | 162 const subtest = this.#test.createSubtest( 167 return subtest.start(); 379 addReadySubtest(subtest) { 380 this.readySubtests.set(subtest.testNumber, subtest); 388 const subtest = this.readySubtests.get(i); 390 // Check if the specified subtest is in the map. If it is not, return 393 if (subtest === undefined) { 411 // Report the subtest's results and remove it from the ready map. 412 subtest [all...] |
H A D | runner.js | 366 const subtest = opts.root.createSubtest(FileTest, path, async (t) => { 392 subtest.parseMessage(data); 405 subtest.addToReport({ 427 const failureType = subtest.failedSubtests ? kSubtestsFailed : kTestCodeFailure; 441 return subtest.start(); 552 const subtest = runTestFile(path, filesWatcher, opts); 553 filesWatcher?.runningSubtests.set(path, subtest); 554 return subtest;
|
H A D | harness.js | 211 async function startSubtest(subtest) { 214 await subtest.start(); 220 const subtest = parent.createSubtest(Factory, name, options, fn, overrides); 222 return startSubtest(subtest);
|
/third_party/node/lib/internal/test_runner/reporter/ |
H A D | spec.js | 93 const subtest = ArrayPrototypeShift(this.#stack); // This is the matching `test:start` event 94 if (subtest) { 95 assert(subtest.type === 'test:start'); 96 assert(subtest.data.nesting === data.nesting); 97 assert(subtest.data.name === data.name);
|
/third_party/python/Lib/unittest/ |
H A D | runner.py | 74 def addSubTest(self, test, subtest, err): 77 if issubclass(err[0], subtest.failureException): 78 self._write_status(subtest, "FAIL") 80 self._write_status(subtest, "ERROR") 82 if issubclass(err[0], subtest.failureException): 87 super(TextTestResult, self).addSubTest(test, subtest, err)
|
H A D | result.py | 125 def addSubTest(self, test, subtest, err): 126 """Called at the end of a subtest. 127 'err' is None if the subtest ended successfully, otherwise it's a 139 errors.append((subtest, self._exc_info_to_string(err, test)))
|
/third_party/python/Lib/unittest/test/ |
H A D | test_skipping.py | 67 subtest, msg = result.skipped[0] 69 self.assertIsInstance(subtest, unittest.TestCase) 70 self.assertIsNot(subtest, test) 71 subtest, msg = result.skipped[1] 73 self.assertIsInstance(subtest, unittest.TestCase) 74 self.assertIsNot(subtest, test) 82 self.assertEqual([msg for subtest, msg in result.skipped], 270 # A failure in any subtest counts as the expected failure of the 515 events.append('subtest') 516 self.skipTest("skip subtest") [all...] |
H A D | support.py | 102 def addSubTest(self, test, subtest, err): 107 super().addSubTest(test, subtest, err)
|
H A D | test_result.py | 404 nonlocal subtest 406 subtest = self._subtest 412 result.addSubTest(test, subtest, exc_info_tuple) 416 subtest = None 429 self.assertIs(test_case, subtest) 432 self.assertIs(test_case, subtest) 506 '(<subtest>)')
|
/third_party/node/test/common/ |
H A D | wpt.js | 71 const subtest = { 78 subtest.message = sanitizeUnpairedSurrogates(message); 80 this.subtests.push(subtest); 81 return subtest;
|
/third_party/node/deps/openssl/openssl/util/perl/ |
H A D | checkhandshake.pm | 67 subtest $testname => sub {
|
/third_party/openssl/util/perl/ |
H A D | checkhandshake.pm | 67 subtest $testname => sub {
|
/third_party/node/test/parallel/ |
H A D | test-runner-cli.js | 157 assert.match(stdout, / {2}error: '1 subtest failed'/);
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
H A D | radeonsi-run-tests.py | 473 "{}/modules/{subtest}/deqp-{subtest}".format(deqp_path, subtest=k)
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 20 perlapp perltest subtest)); 1293 sub subtest { subroutine 1296 Test::More::subtest @_;
|
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Test.pm | 20 perlapp perltest subtest)); 1293 sub subtest { subroutine 1296 Test::More::subtest @_;
|
/third_party/openssl/test/ |
H A D | testutil.h | 229 int subtest);
|