Lines Matching refs:is_test
38 void *(*get_attr)(void *test_or_suite, bool is_test);
172 static void *attr_speed_get(void *test_or_suite, bool is_test)
174 struct kunit_suite *suite = is_test ? NULL : test_or_suite;
175 struct kunit_case *test = is_test ? test_or_suite : NULL;
183 static void *attr_module_get(void *test_or_suite, bool is_test)
185 struct kunit_suite *suite = is_test ? NULL : test_or_suite;
186 struct kunit_case *test = is_test ? test_or_suite : NULL;
225 void kunit_print_attr(void *test_or_suite, bool is_test, unsigned int test_level)
231 struct kunit_suite *suite = is_test ? NULL : test_or_suite;
232 struct kunit_case *test = is_test ? test_or_suite : NULL;
238 attr = kunit_attr_list[i].get_attr(test_or_suite, is_test);