Lines Matching refs:test_suite
154 static int shell_test__run(struct test_suite *test, int subtest __maybe_unused) in shell_test__run()
171 struct test_suite ***result, in append_script()
175 struct test_suite *test_suite, **result_tmp; in append_script() local
197 test_suite = zalloc(sizeof(*test_suite)); in append_script()
198 if (!test_suite) { in append_script()
203 test_suite->desc = desc; in append_script()
204 test_suite->test_cases = tests; in append_script()
205 test_suite->priv = strdup_check(filename); in append_script()
212 free(test_suite); in append_script()
217 (*result)[*result_sz] = test_suite; in append_script()
222 struct test_suite ***result, in append_scripts_in_dir()
264 struct test_suite **create_script_test_suites(void) in create_script_test_suites()
266 struct test_suite **result = NULL, **result_tmp; in create_script_test_suites()