Searched refs:test_or_suite (Results 1 – 2 of 2) sorted by relevance
38 void *(*get_attr)(void *test_or_suite, bool is_test);213 static void *attr_speed_get(void *test_or_suite, bool is_test) in attr_speed_get() argument215 struct kunit_suite *suite = is_test ? NULL : test_or_suite; in attr_speed_get()216 struct kunit_case *test = is_test ? test_or_suite : NULL; in attr_speed_get()224 static void *attr_module_get(void *test_or_suite, bool is_test) in attr_module_get() argument226 struct kunit_suite *suite = is_test ? NULL : test_or_suite; in attr_module_get()227 struct kunit_case *test = is_test ? test_or_suite : NULL; in attr_module_get()238 static void *attr_is_init_get(void *test_or_suite, bool is_test) in attr_is_init_get() argument240 struct kunit_suite *suite = is_test ? NULL : test_or_suite; in attr_is_init_get()241 struct kunit_case *test = is_test ? test_or_suite : NULL; in attr_is_init_get()[all …]
31 void kunit_print_attr(void *test_or_suite, bool is_test, unsigned int test_level);