Home
last modified time | relevance | path

Searched refs:subtest (Results 1 - 25 of 25) sorted by relevance

/third_party/node/deps/v8/tools/testrunner/testproc/
H A Dexpectation.py16 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 Drerun.py24 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 Dvariant.py44 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 Dbase.py27 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 Dfuzzer.py146 def _result_for(self, test, subtest, result):
199 for subtest in self._gens[test.procid]:
200 if self._send_test(subtest):
H A Dseed.py18 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 Ddriver.c37 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 Dtestcase.py87 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 Dtest.js162 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 Drunner.js366 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 Dharness.js211 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 Dspec.js93 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 Drunner.py74 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 Dresult.py125 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 Dtest_skipping.py67 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 Dsupport.py102 def addSubTest(self, test, subtest, err):
107 super().addSubTest(test, subtest, err)
H A Dtest_result.py404 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 Dwpt.js71 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 Dcheckhandshake.pm67 subtest $testname => sub {
/third_party/openssl/util/perl/
H A Dcheckhandshake.pm67 subtest $testname => sub {
/third_party/node/test/parallel/
H A Dtest-runner-cli.js157 assert.match(stdout, / {2}error: '1 subtest failed'/);
/third_party/mesa3d/src/gallium/drivers/radeonsi/ci/
H A Dradeonsi-run-tests.py473 "{}/modules/{subtest}/deqp-{subtest}".format(deqp_path, subtest=k)
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
H A DTest.pm20 perlapp perltest subtest));
1293 sub subtest { subroutine
1296 Test::More::subtest @_;
/third_party/openssl/util/perl/OpenSSL/
H A DTest.pm20 perlapp perltest subtest));
1293 sub subtest { subroutine
1296 Test::More::subtest @_;
/third_party/openssl/test/
H A Dtestutil.h229 int subtest);

Completed in 15 milliseconds