Lines Matching refs:test_cases
295 void run_tests(const struct test_case *test_cases, in run_tests() argument
300 for (i = 0; test_cases[i].name; i++) { in run_tests()
304 printf("%d - %s...", i, test_cases[i].name); in run_tests()
314 if (test_cases[i].skip) in run_tests()
320 if (control_cmpln(line, "SKIP", false) || test_cases[i].skip) { in run_tests()
332 run = test_cases[i].run_client; in run_tests()
334 run = test_cases[i].run_server; in run_tests()
343 void list_tests(const struct test_case *test_cases) in list_tests() argument
349 for (i = 0; test_cases[i].name; i++) in list_tests()
350 printf("%d\t%s\n", i, test_cases[i].name); in list_tests()
355 void skip_test(struct test_case *test_cases, size_t test_cases_len, in skip_test() argument
374 test_cases[test_id].skip = true; in skip_test()