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[] = {
228 static int test_suite__num_test_cases(const struct test_suite *t) in test_suite__num_test_cases()
237 static const char *skip_reason(const struct test_suite *t, int test_case) in skip_reason()
245 static const char *test_description(const struct test_suite *t, int test_case) in test_description()
253 static test_fnptr test_function(const struct test_suite *t, int test_case) in test_function()
261 static bool test_exclusive(const struct test_suite *t, int test_case) in test_exclusive()
295 struct test_suite *test;
352 static int print_test_result(struct test_suite *t, int curr_suite, int curr_test_case, in print_test_result()
392 struct test_suite *t; in finish_test()
495 static int start_test(struct test_suite *test, int curr_suite, int curr_test_case, in start_test()
558 static int __cmd_test(struct test_suite **suites, int argc, const char *argv[], in __cmd_test()
564 for (struct test_suite **t = suites; *t; t++) { in __cmd_test()
610 for (struct test_suite **t = suites; *t; t++, curr_suite++) { in __cmd_test()
673 static int perf_test__list(FILE *fp, struct test_suite **suites, int argc, const char **argv) in perf_test__list()
677 for (struct test_suite **t = suites; *t; t++, curr_suite++) { in perf_test__list()
729 static struct test_suite **build_suites(void) in build_suites()
735 static struct test_suite **suites[] = { in build_suites()
740 struct test_suite **result; in build_suites()
741 struct test_suite *t; in build_suites()
754 result = calloc(num_suites + 1, sizeof(struct test_suite *)); in build_suites()
804 struct test_suite **suites; in cmd_test()