Searched refs:suites (Results 1 - 5 of 5) sorted by relevance

/linux-master/lib/kunit/
H A Dexecutor.c38 "Filter which KUnit test suites/tests run at boot-time, e.g. list* or list*.*del_test");
41 "Filter which KUnit test suites/tests run at boot-time using attributes, e.g. speed>slow");
140 struct kunit_suite * const *suites; local
142 for (suites = suite_set.start; suites < suite_set.end; suites++) {
143 kfree((*suites)->test_cases);
144 kfree(*suites);
150 * Filter and reallocate test suites. Must return the filtered test suites se
166 struct kunit_suite * const *suites; local
280 struct kunit_suite * const *suites; local
[all...]
H A Dtest.c711 int __kunit_test_suites_init(struct kunit_suite * const * const suites, int num_suites) argument
730 kunit_init_suite(suites[i]);
731 kunit_run_tests(suites[i]);
745 void __kunit_test_suites_exit(struct kunit_suite **suites, int num_suites) argument
753 kunit_exit_suite(suites[i]);
780 pr_err("kunit module: error filtering suites: %d\n", err);
/linux-master/tools/testing/kunit/
H A Dkunit.py146 """Extracts all the suites from an ordered list of tests."""
147 suites = [] # type: List[str]
153 if not suites or suites[-1] != suite:
154 suites.append(suite)
155 return suites
374 help='Filter which KUnit test suites/tests run at '
/linux-master/net/mac80211/
H A Dmain.c1015 u32 *suites; local
1045 /* Driver provides cipher suites, but we need to exclude WEP */
1046 suites = kmemdup(local->hw.wiphy->cipher_suites,
1049 if (!suites)
1058 suites[w++] = suite;
1062 * cipher suites
1079 local->hw.wiphy->cipher_suites = suites;
/linux-master/include/kunit/
H A Dtest.h259 /* Stores an array of suites, end points one past the end */
334 int __kunit_test_suites_init(struct kunit_suite * const * const suites, int num_suites);
336 void __kunit_test_suites_exit(struct kunit_suite **suites, int num_suites);
364 * Registers @suites with the test framework.
391 * list of suites during init phase.

Completed in 139 milliseconds