Lines Matching refs:test_case
166 static const char *skip_reason(const struct test_suite *t, int test_case) in skip_reason() argument
171 return t->test_cases[test_case >= 0 ? test_case : 0].skip_reason; in skip_reason()
174 static const char *test_description(const struct test_suite *t, int test_case) in test_description() argument
176 if (t->test_cases && test_case >= 0) in test_description()
177 return t->test_cases[test_case].desc; in test_description()
182 static test_fnptr test_function(const struct test_suite *t, int test_case) in test_function() argument
184 if (test_case <= 0) in test_function()
187 return t->test_cases[test_case].run_case; in test_function()
190 static bool test_exclusive(const struct test_suite *t, int test_case) in test_exclusive() argument
192 if (test_case <= 0) in test_exclusive()
195 return t->test_cases[test_case].exclusive; in test_exclusive()