| /OK3568_Linux_fs/kernel/lib/kunit/ |
| H A D | executor.c | 16 struct kunit_suite * const * const *suites, * const *subsuite; in kunit_print_tap_header() local 19 for (suites = __kunit_suites_start; in kunit_print_tap_header() 20 suites < __kunit_suites_end; in kunit_print_tap_header() 21 suites++) in kunit_print_tap_header() 22 for (subsuite = *suites; *subsuite != NULL; subsuite++) in kunit_print_tap_header() 31 struct kunit_suite * const * const *suites; in kunit_run_all_tests() local 35 for (suites = __kunit_suites_start; in kunit_run_all_tests() 36 suites < __kunit_suites_end; in kunit_run_all_tests() 37 suites++) in kunit_run_all_tests() 38 __kunit_test_suites_init(*suites); in kunit_run_all_tests()
|
| H A D | test.c | 373 int __kunit_test_suites_init(struct kunit_suite * const * const suites) in __kunit_test_suites_init() argument 377 for (i = 0; suites[i] != NULL; i++) { in __kunit_test_suites_init() 378 kunit_init_suite(suites[i]); in __kunit_test_suites_init() 379 kunit_run_tests(suites[i]); in __kunit_test_suites_init() 390 void __kunit_test_suites_exit(struct kunit_suite **suites) in __kunit_test_suites_exit() argument 394 for (i = 0; suites[i] != NULL; i++) in __kunit_test_suites_exit() 395 kunit_exit_suite(suites[i]); in __kunit_test_suites_exit()
|
| /OK3568_Linux_fs/kernel/net/mac80211/ |
| H A D | main.c | 770 u32 *suites; in ieee80211_init_cipher_suites() local 801 suites = kmemdup(local->hw.wiphy->cipher_suites, in ieee80211_init_cipher_suites() 804 if (!suites) in ieee80211_init_cipher_suites() 813 suites[w++] = suite; in ieee80211_init_cipher_suites() 856 suites = kmalloc_array(n_suites, sizeof(u32), GFP_KERNEL); in ieee80211_init_cipher_suites() 857 if (!suites) in ieee80211_init_cipher_suites() 860 suites[w++] = WLAN_CIPHER_SUITE_CCMP; in ieee80211_init_cipher_suites() 861 suites[w++] = WLAN_CIPHER_SUITE_CCMP_256; in ieee80211_init_cipher_suites() 862 suites[w++] = WLAN_CIPHER_SUITE_TKIP; in ieee80211_init_cipher_suites() 863 suites[w++] = WLAN_CIPHER_SUITE_GCMP; in ieee80211_init_cipher_suites() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/dev-tools/kunit/ |
| H A D | style.rst | 23 In order to make tests as easy to find as possible, they're grouped into suites 25 the kernel, and a subsystem is a set of test suites which test different parts 32 or more KUnit test suites which test the same driver or part of the kernel. A 74 simply a way of categorising test suites and naming modules which 81 KUnit tests are grouped into test suites, which cover a specific area of 82 functionality being tested. Test suites can have shared initialisation and 84 Not all subsystems will need to be split into multiple test suites (e.g. simple drivers). 86 Test suites are named after the subsystem they are part of. If a subsystem 87 contains several suites, the specific area under test should be appended to the 92 separate suites, with the type of test as the last element in the suite name. [all …]
|
| /OK3568_Linux_fs/yocto/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)
|
| /OK3568_Linux_fs/yocto/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)
|
| /OK3568_Linux_fs/kernel/tools/testing/kunit/ |
| H A D | kunit_tool_test.py | 169 self.assertEqual(0, len(result.suites)) 204 self.assertEqual('kunit-resource-test', result.suites[0].name) 214 self.assertEqual('kunit-resource-test', result.suites[0].name) 224 self.assertEqual('kunit-resource-test', result.suites[0].name) 233 self.assertEqual('kunit-resource-test', result.suites[0].name) 242 self.assertEqual('kunit-resource-test', result.suites[0].name) 251 self.assertEqual('kunit-resource-test', result.suites[0].name)
|
| H A D | kunit_json.py | 20 for test_suite in test_result.suites:
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/ |
| H A D | oetest.py | 300 suites = [testloader.loadTestsFromName(name) for name in self.testslist] 301 suites = filterByTagExp(suites, getattr(self, "tagexp", None)) 306 for suite in suites: 315 for dep_suite in suites: 335 for index, suite in enumerate(suites): 345 suites.sort(key=functools.cmp_to_key(cmpfunc)) 347 self.suite = testloader.suiteClass(suites)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | gcc.py | 21 def run_check(self, *suites, ssh = None): argument 23 for s in suites: 47 for suite in suites:
|
| /OK3568_Linux_fs/buildroot/package/tinydtls/ |
| H A D | Config.in | 8 the mandatory cipher suites specified in CoAP.
|
| /OK3568_Linux_fs/buildroot/package/libspatialindex/ |
| H A D | 0001-allow-building-static-libs.patch | 30 option(SIDX_BUILD_TESTS "Enables integrated test suites" OFF)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/ |
| H A D | context.py | 123 def prepareSuite(self, suites, processes): argument 127 return ConcurrentTestSuite(suites, processes, self.setup_builddir, self.removebuilddir) 129 … return NonConcurrentTestSuite(suites, processes, self.setup_builddir, self.removebuilddir)
|
| /OK3568_Linux_fs/kernel/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.
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/ptest-runner/ |
| H A D | ptest-runner_2.4.2.bb | 3 program which loops through all installed ptest test suites and \
|
| /OK3568_Linux_fs/u-boot/test/ |
| H A D | Kconfig | 5 U-Boot. Test suites will be subcommands of the "ut" command.
|
| /OK3568_Linux_fs/external/xserver/test/ |
| H A D | README | 8 libraries as the Xorg binary. The test suites can then call various functions
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | testexport.bbclass | 118 for f in getSuiteCasesFiles(tc.suites): 143 package_extraction(d, tc.suites)
|
| H A D | testimage.bbclass | 368 suitecases = getSuiteCases(tc.suites) 372 bb.debug(2, 'test suites:\n\t%s' % '\n\t'.join([str(c) for c in suitecases])) 374 package_extraction(d, tc.suites)
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/ |
| H A D | TODO.txt | 29 to automate running multiple "test suites" with different requirements
|
| /OK3568_Linux_fs/yocto/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 \
|
| /OK3568_Linux_fs/kernel/include/kunit/ |
| H A D | test.h | 242 int __kunit_test_suites_init(struct kunit_suite * const * const suites); 244 void __kunit_test_suites_exit(struct kunit_suite **suites); 313 __UNIQUE_ID(suites), \
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-gnome/gtk+/ |
| H A D | gtk+.inc | 3 … GTK+ is suitable for projects ranging from small one-off projects to complete application suites."
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-gnome/recipes-gnome/gtk4/ |
| H A D | gtk4_4.6.2.bb | 3 …, GTK is suitable for projects ranging from small one-off projects to complete application suites."
|