Lines Matching refs:tests
19 #include "tests-scripts.h"
26 #include "tests.h"
36 "./tools/perf/tests/shell",
37 "./tests/shell",
38 "./source/tests/shell"
67 scnprintf(path, sizeof(path), "%s/tests/shell", path2);
71 scnprintf(path, sizeof(path), "%s/source/tests/shell", path2);
78 scnprintf(path, sizeof(path), "%s/tests/shell", exec_path);
188 struct test_case *tests;
201 tests = calloc(2, sizeof(*tests));
202 if (!tests) {
206 tests[0].name = strdup_check(name);
209 tests[0].exclusive = true;
212 tests[0].desc = strdup_check(desc);
213 tests[0].run_case = shell_test__run;
217 free(tests);
221 test_suite->test_cases = tests;
228 free(tests);