Home
last modified time | relevance | path

Searched refs:suites (Results 1 – 25 of 88) sorted by relevance

1234

/openbmc/linux/lib/kunit/
H A Dexecutor.c138 struct kunit_suite * const *suites; in kunit_free_suite_set() local
140 for (suites = suite_set.start; suites < suite_set.end; suites++) { in kunit_free_suite_set()
141 kfree((*suites)->test_cases); in kunit_free_suite_set()
142 kfree(*suites); in kunit_free_suite_set()
164 struct kunit_suite * const *suites; in kunit_filter_suites() local
241 for (suites = copy_start; suites < copy; suites++) { in kunit_filter_suites()
242 kfree((*suites)->test_cases); in kunit_filter_suites()
243 kfree(*suites); in kunit_filter_suites()
278 struct kunit_suite * const *suites; in kunit_exec_list_tests() local
284 for (suites = suite_set->start; suites < suite_set->end; suites++) { in kunit_exec_list_tests()
[all …]
H A Dtest.c735 int __kunit_test_suites_init(struct kunit_suite * const * const suites, int num_suites) in __kunit_test_suites_init() argument
749 kunit_init_suite(suites[i]); in __kunit_test_suites_init()
750 kunit_run_tests(suites[i]); in __kunit_test_suites_init()
763 void __kunit_test_suites_exit(struct kunit_suite **suites, int num_suites) in __kunit_test_suites_exit() argument
771 kunit_exit_suite(suites[i]); in __kunit_test_suites_exit()
/openbmc/qemu/scripts/
H A Dmtest2make.py42 def process_tests(test, targets, suites): argument
62 suites[s].speeds.append('slow')
65 suites[s].speeds.append('thorough')
66 suites[s].deps.update(deps)
68 def emit_prolog(suites, prefix): argument
69 all_targets = ' '.join((f'{prefix}-{k}' for k in suites.keys()))
70 all_xml = ' '.join((f'{prefix}-report-{k}.junit.xml' for k in suites.keys()))
/openbmc/openbmc/poky/meta/lib/oeqa/core/tests/
H A Dtest_loader.py38 modules = getSuiteModules(tc.suites)
47 cases = set(getSuiteCasesIDs(tc.suites))
57 modules = getSuiteModules(tc.suites)
H A Dtest_decorators.py20 test_loaded = set(getSuiteCasesIDs(tc.suites))
82 test_loaded = getSuiteCasesIDs(tc.suites)
/openbmc/linux/Documentation/dev-tools/kunit/
H A Dstyle.rst23 To make tests easy to find, they are grouped into suites and subsystems. A test
25 is a set of test suites which test different parts of a kernel subsystem
32 or more KUnit test suites which test the same driver or part of the kernel. A
72 a way of categorizing test suites and naming modules which provides a
79 KUnit tests are grouped into test suites, which cover a specific area of
80 functionality being tested. Test suites can have shared initialization and
82 to be split into multiple test suites (for example, simple drivers).
84 Test suites are named after the subsystem they are part of. If a subsystem
85 contains several suites, the specific area under test should be appended to the
90 put into separate suites, with the type of test as the last element in the suite
[all …]
H A Darchitecture.rst27 into suites. A KUnit test case is a function with type signature
47 A KUnit suite includes a collection of test cases. The KUnit suites
78 The Test suites are stored in a linker section
/openbmc/openbmc/poky/meta/lib/oeqa/core/
H A Dcontext.py57 for test in self.suites:
76 self.suites = self.loader.discover()
78 def prepareSuite(self, suites, processes): argument
79 return suites
91 result = self.runner.run(self.prepareSuite(self.suites, processes))
98 return self.runner.list_tests(self.suites, display_type)
/openbmc/qemu/tests/qemu-iotests/
H A Dmeson.build39 suites = 'block' variable
41 suites = ['block-' + speed, speed] variable
69 suite: suites)
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Doetest.py285 suites = [testloader.loadTestsFromName(name) for name in self.testslist]
286 suites = filterByTagExp(suites, getattr(self, "tagexp", None))
291 for suite in suites:
300 for dep_suite in suites:
320 for index, suite in enumerate(suites):
330 suites.sort(key=functools.cmp_to_key(cmpfunc))
332 self.suite = testloader.suiteClass(suites)
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dgcc.py26 def run_check(self, *suites, ssh = None): argument
28 for s in suites:
57 for suite in suites:
/openbmc/openbmc/poky/meta/recipes-support/ptest-runner/
H A Dptest-runner_2.4.5.1.bb3 program which loops through all installed ptest test suites and \
35 # Create a non-root user that test suites can use easily
/openbmc/qemu/tests/functional/
H A Dmeson.build252 suites = ['func-quick', 'func-' + target_base] variable
256 suites = ['func-' + speed, 'func-' + target_base + '-' + speed, speed] variable
304 suite: suites)
/openbmc/linux/tools/testing/kunit/
H A Dkunit.py147 suites = [] # type: List[str]
153 if not suites or suites[-1] != suite:
154 suites.append(suite)
155 return suites
/openbmc/u-boot/tools/concurrencytest/
H A DREADME.md6 Python testtools extension for running unittest suites concurrently.
/openbmc/linux/tools/perf/Documentation/
H A Dperf-bench.txt6 perf-bench - General framework for benchmark suites
15 This 'perf bench' command is a general framework for benchmark suites.
/openbmc/u-boot/test/
H A DKconfig5 U-Boot. Test suites will be subcommands of the "ut" command.
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/
H A Dcontext.py156 def prepareSuite(self, suites, processes): argument
160 …return ConcurrentTestSuite(suites, processes, self.setup_builddir, self.removebuilddir, self.bb_va…
162 …return NonConcurrentTestSuite(suites, processes, self.setup_builddir, self.removebuilddir, self.bb…
/openbmc/linux/tools/testing/selftests/tc-testing/
H A DTODO.txt29 to automate running multiple "test suites" with different requirements
/openbmc/qemu/crypto/
H A Dmeson.build54 system_ss.add(when: gnutls, if_true: files('tls-cipher-suites.c'))
H A Dtrace-events25 # tls-cipher-suites.c
/openbmc/openbmc/poky/meta/recipes-support/libsoup/
H A Dlibsoup_3.6.1.bb43 # Disable the test suites
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dtestexport.bbclass120 for f in getSuiteCasesFiles(tc.suites):
145 package_extraction(d, tc.suites)
/openbmc/openbmc/poky/documentation/test-manual/
H A Dptest.rst49 all installed ptest test suites and runs them in sequence. Consequently,
98 cross-compilation of their test suites. Consequently, you usually
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/bearssl/
H A Dbearssl_0.6.bb13 * Be feature-rich and extensible. SSL/TLS has many defined cipher suites \

1234