Searched refs:suite_glob (Results 1 - 2 of 2) sorted by relevance

/linux-master/lib/kunit/
H A Dexecutor.c65 char *suite_glob; member in struct:kunit_glob_filter
69 /* Split "suite_glob.test_glob" into two. Assumes filter_glob is not empty. */
77 parsed->suite_glob = kzalloc(len + 1, GFP_KERNEL);
78 if (!parsed->suite_glob)
82 strcpy(parsed->suite_glob, filter_glob);
86 parsed->suite_glob = kzalloc(period - filter_glob + 1, GFP_KERNEL);
87 if (!parsed->suite_glob)
92 kfree(parsed->suite_glob);
96 strncpy(parsed->suite_glob, filter_glob, period - filter_glob);
199 if (!glob_match(parsed_glob.suite_glob, filtered_suit
[all...]
H A Dexecutor_test.c31 KUNIT_EXPECT_STREQ(test, filter.suite_glob, "suite");
33 kfree(filter.suite_glob);
37 KUNIT_EXPECT_STREQ(test, filter.suite_glob, "suite");
39 kfree(filter.suite_glob);

Completed in 100 milliseconds