Lines Matching full:tests
19 #include "tests-scripts.h"
26 #include "tests.h"
35 "./tools/perf/tests/shell", in shell_tests__dir_fd()
36 "./tests/shell", in shell_tests__dir_fd()
37 "./source/tests/shell" in shell_tests__dir_fd()
62 scnprintf(path, sizeof(path), "%s/tests/shell", path2); in shell_tests__dir_fd()
66 scnprintf(path, sizeof(path), "%s/source/tests/shell", path2); in shell_tests__dir_fd()
73 scnprintf(path, sizeof(path), "%s/tests/shell", exec_path); in shell_tests__dir_fd()
176 struct test_case *tests; in append_script() local
189 tests = calloc(2, sizeof(*tests)); in append_script()
190 if (!tests) { in append_script()
194 tests[0].name = strdup_check(name); in append_script()
197 tests[0].exclusive = true; in append_script()
200 tests[0].desc = strdup_check(desc); in append_script()
201 tests[0].run_case = shell_test__run; in append_script()
205 free(tests); in append_script()
209 test_suite->test_cases = tests; in append_script()
216 free(tests); in append_script()