Lines Matching refs:test_cases
429 void run_tests(const struct test_case *test_cases, in run_tests() argument
434 for (i = 0; test_cases[i].name; i++) { in run_tests()
438 printf("%d - %s...", i, test_cases[i].name); in run_tests()
448 if (test_cases[i].skip) in run_tests()
454 if (control_cmpln(line, "SKIP", false) || test_cases[i].skip) { in run_tests()
466 run = test_cases[i].run_client; in run_tests()
468 run = test_cases[i].run_server; in run_tests()
477 void list_tests(const struct test_case *test_cases) in list_tests() argument
483 for (i = 0; test_cases[i].name; i++) in list_tests()
484 printf("%d\t%s\n", i, test_cases[i].name); in list_tests()
489 void skip_test(struct test_case *test_cases, size_t test_cases_len, in skip_test() argument
508 test_cases[test_id].skip = true; in skip_test()