Lines Matching refs:test_suite

60 extern struct test_suite *arch_tests[];
62 static struct test_suite *arch_tests[] = {
67 static struct test_suite *generic_tests[] = {
234 static int test_suite__num_test_cases(const struct test_suite *t) in test_suite__num_test_cases()
243 static const char *skip_reason(const struct test_suite *t, int test_case) in skip_reason()
251 static const char *test_description(const struct test_suite *t, int test_case) in test_description()
259 static test_fnptr test_function(const struct test_suite *t, int test_case) in test_function()
267 static bool test_exclusive(const struct test_suite *t, int test_case) in test_exclusive()
301 struct test_suite *test;
358 static int print_test_result(struct test_suite *t, int curr_suite, int curr_test_case, in print_test_result()
398 struct test_suite *t; in finish_test()
501 static int start_test(struct test_suite *test, int curr_suite, int curr_test_case, in start_test()
564 static int __cmd_test(struct test_suite **suites, int argc, const char *argv[], in __cmd_test()
570 for (struct test_suite **t = suites; *t; t++) { in __cmd_test()
616 for (struct test_suite **t = suites; *t; t++, curr_suite++) { in __cmd_test()
679 static int perf_test__list(FILE *fp, struct test_suite **suites, int argc, const char **argv) in perf_test__list()
683 for (struct test_suite **t = suites; *t; t++, curr_suite++) { in perf_test__list()
735 static struct test_suite **build_suites(void) in build_suites()
741 static struct test_suite **suites[] = { in build_suites()
746 struct test_suite **result; in build_suites()
747 struct test_suite *t; in build_suites()
760 result = calloc(num_suites + 1, sizeof(struct test_suite *)); in build_suites()
810 struct test_suite **suites; in cmd_test()