Lines Matching refs:test_cases
317 void run_tests(const struct test_case *test_cases, in run_tests() argument
322 for (i = 0; test_cases[i].name; i++) { in run_tests()
326 printf("%d - %s...", i, test_cases[i].name); in run_tests()
336 if (test_cases[i].skip) in run_tests()
342 if (control_cmpln(line, "SKIP", false) || test_cases[i].skip) { in run_tests()
354 run = test_cases[i].run_client; in run_tests()
356 run = test_cases[i].run_server; in run_tests()
365 void list_tests(const struct test_case *test_cases) in list_tests() argument
371 for (i = 0; test_cases[i].name; i++) in list_tests()
372 printf("%d\t%s\n", i, test_cases[i].name); in list_tests()
377 void skip_test(struct test_case *test_cases, size_t test_cases_len, in skip_test() argument
396 test_cases[test_id].skip = true; in skip_test()