Searched refs:suites (Results 1 – 14 of 14) sorted by relevance
| /linux/lib/kunit/ |
| A D | executor.c | 141 struct kunit_suite * const * const *suites; in kunit_free_suite_set() local 143 for (suites = suite_set.start; suites < suite_set.end; suites++) in kunit_free_suite_set() 144 kunit_free_subsuite(*suites); in kunit_free_suite_set() 198 for (suites = suite_set->start; suites < suite_set->end; suites++) in kunit_print_tap_header() 199 for (subsuite = *suites; *subsuite != NULL; subsuite++) in kunit_print_tap_header() 208 struct kunit_suite * const * const *suites; in kunit_exec_run_tests() local 212 for (suites = suite_set->start; suites < suite_set->end; suites++) in kunit_exec_run_tests() 213 __kunit_test_suites_init(*suites); in kunit_exec_run_tests() 219 struct kunit_suite * const * const *suites; in kunit_exec_list_tests() local 225 for (suites = suite_set->start; suites < suite_set->end; suites++) in kunit_exec_list_tests() [all …]
|
| A D | executor_test.c | 116 struct kunit_suite * const * const *suites; in kfree_subsuites_at_end() local 119 for (suites = suite_set->start; suites < suite_set->end; suites++) in kfree_subsuites_at_end() 120 free_subsuite_at_end(test, *suites); in kfree_subsuites_at_end() 131 struct kunit_suite * const * const suites[2] = { in filter_suites_test() local 136 .start = suites, in filter_suites_test() 137 .end = suites + 2, in filter_suites_test()
|
| A D | test.c | 563 int __kunit_test_suites_init(struct kunit_suite * const * const suites) in __kunit_test_suites_init() argument 567 for (i = 0; suites[i] != NULL; i++) { in __kunit_test_suites_init() 568 kunit_init_suite(suites[i]); in __kunit_test_suites_init() 569 kunit_run_tests(suites[i]); in __kunit_test_suites_init() 580 void __kunit_test_suites_exit(struct kunit_suite **suites) in __kunit_test_suites_exit() argument 584 for (i = 0; suites[i] != NULL; i++) in __kunit_test_suites_exit() 585 kunit_exit_suite(suites[i]); in __kunit_test_suites_exit()
|
| /linux/net/mac80211/ |
| A D | main.c | 782 u32 *suites; in ieee80211_init_cipher_suites() local 816 if (!suites) in ieee80211_init_cipher_suites() 825 suites[w++] = suite; in ieee80211_init_cipher_suites() 869 if (!suites) in ieee80211_init_cipher_suites() 872 suites[w++] = WLAN_CIPHER_SUITE_CCMP; in ieee80211_init_cipher_suites() 874 suites[w++] = WLAN_CIPHER_SUITE_TKIP; in ieee80211_init_cipher_suites() 875 suites[w++] = WLAN_CIPHER_SUITE_GCMP; in ieee80211_init_cipher_suites() 879 suites[w++] = WLAN_CIPHER_SUITE_WEP40; in ieee80211_init_cipher_suites() 891 suites[w++] = cs[r].cipher; in ieee80211_init_cipher_suites() 893 kfree(suites); in ieee80211_init_cipher_suites() [all …]
|
| /linux/Documentation/dev-tools/kunit/ |
| 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 …]
|
| A D | index.rst | 26 cases, grouping related test cases into test suites, providing common
|
| A D | usage.rst | 764 When kunit test suites are initialized, they create an associated directory 770 The debugfs representation is primarily of use when kunit test suites are
|
| /linux/tools/testing/kunit/ |
| A D | kunit.py | 112 suites = [] # type: List[str] 118 if not suites or suites[-1] != suite: 119 suites.append(suite) 120 return suites
|
| /linux/tools/perf/Documentation/ |
| 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.
|
| /linux/tools/testing/selftests/tc-testing/ |
| A D | TODO.txt | 29 to automate running multiple "test suites" with different requirements
|
| /linux/include/kunit/ |
| A D | test.h | 306 int __kunit_test_suites_init(struct kunit_suite * const * const suites); 308 void __kunit_test_suites_exit(struct kunit_suite **suites); 377 __UNIQUE_ID(suites), \
|
| /linux/Documentation/vm/ |
| A D | hwpoison.rst | 120 some early filtering to avoid corrupted unintended pages in test suites.
|
| /linux/Documentation/networking/dsa/ |
| A D | configuration.rst | 8 network configuration suites by now and has to be performed manualy.
|
| /linux/ |
| A D | CREDITS | 2786 D: AX.25, NET/ROM and ROSE amateur radio protocol suites
|
Completed in 27 milliseconds