Lines Matching defs:test_glob
64 char *test_glob;
67 /* Split "suite_glob.test_glob" into two. Assumes filter_glob is not empty. */
79 parsed->test_glob = NULL;
88 parsed->test_glob = kzalloc(len - (period - filter_glob) + 1, GFP_KERNEL);
89 if (!parsed->test_glob) {
95 strncpy(parsed->test_glob, period + 1, len - (period - filter_glob));
100 /* Create a copy of suite with only tests that match test_glob. */
102 kunit_filter_glob_tests(const struct kunit_suite *const suite, const char *test_glob)
109 if (!test_glob || glob_match(test_glob, test_case->name))
128 if (!test_glob || glob_match(test_glob, test_case->name))
200 parsed_glob.test_glob);
254 kfree(parsed_glob.test_glob);