/openbmc/linux/lib/kunit/ |
H A D | executor.c | 138 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 D | test.c | 735 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 D | mtest2make.py | 42 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 D | test_loader.py | 38 modules = getSuiteModules(tc.suites) 47 cases = set(getSuiteCasesIDs(tc.suites)) 57 modules = getSuiteModules(tc.suites)
|
H A D | test_decorators.py | 20 test_loaded = set(getSuiteCasesIDs(tc.suites)) 82 test_loaded = getSuiteCasesIDs(tc.suites)
|
/openbmc/linux/Documentation/dev-tools/kunit/ |
H A D | style.rst | 23 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 D | architecture.rst | 27 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 D | context.py | 57 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 D | meson.build | 39 suites = 'block' variable 41 suites = ['block-' + speed, speed] variable 69 suite: suites)
|
/openbmc/openbmc/poky/meta/lib/oeqa/ |
H A D | oetest.py | 285 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 D | gcc.py | 26 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 D | ptest-runner_2.4.5.1.bb | 3 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 D | meson.build | 252 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 D | kunit.py | 147 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 D | README.md | 6 Python testtools extension for running unittest suites concurrently.
|
/openbmc/linux/tools/perf/Documentation/ |
H A D | perf-bench.txt | 6 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 D | Kconfig | 5 U-Boot. Test suites will be subcommands of the "ut" command.
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/ |
H A D | context.py | 156 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 D | TODO.txt | 29 to automate running multiple "test suites" with different requirements
|
/openbmc/qemu/crypto/ |
H A D | meson.build | 54 system_ss.add(when: gnutls, if_true: files('tls-cipher-suites.c'))
|
H A D | trace-events | 25 # tls-cipher-suites.c
|
/openbmc/openbmc/poky/meta/recipes-support/libsoup/ |
H A D | libsoup_3.6.1.bb | 43 # Disable the test suites
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | testexport.bbclass | 120 for f in getSuiteCasesFiles(tc.suites): 145 package_extraction(d, tc.suites)
|
/openbmc/openbmc/poky/documentation/test-manual/ |
H A D | ptest.rst | 49 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 D | bearssl_0.6.bb | 13 * Be feature-rich and extensible. SSL/TLS has many defined cipher suites \
|