Home
last modified time | relevance | path

Searched refs:test_glob (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/lib/kunit/
H A Dexecutor.c64 char *test_glob; member
79 parsed->test_glob = NULL; in kunit_parse_glob_filter()
88 parsed->test_glob = kzalloc(len - (period - filter_glob) + 1, GFP_KERNEL); in kunit_parse_glob_filter()
89 if (!parsed->test_glob) { in kunit_parse_glob_filter()
95 strncpy(parsed->test_glob, period + 1, len - (period - filter_glob)); in kunit_parse_glob_filter()
102 kunit_filter_glob_tests(const struct kunit_suite *const suite, const char *test_glob) in kunit_filter_glob_tests() argument
109 if (!test_glob || glob_match(test_glob, test_case->name)) in kunit_filter_glob_tests()
128 if (!test_glob || glob_match(test_glob, test_case->name)) in kunit_filter_glob_tests()
200 parsed_glob.test_glob); in kunit_filter_suites()
254 kfree(parsed_glob.test_glob); in kunit_filter_suites()
H A Dexecutor_test.c32 KUNIT_EXPECT_FALSE(test, filter.test_glob); in parse_filter_test()
34 kfree(filter.test_glob); in parse_filter_test()
38 KUNIT_EXPECT_STREQ(test, filter.test_glob, "test"); in parse_filter_test()
40 kfree(filter.test_glob); in parse_filter_test()
/openbmc/linux/tools/testing/kunit/
H A Dkunit.py177 test_glob = request.filter_glob.split('.', maxsplit=2)[1]
178 filter_globs = [g + '.'+ test_glob for g in filter_globs]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dpkgdata.py200 def test_glob(self): member in OePkgdataUtilTests
/openbmc/linux/Documentation/dev-tools/kunit/
H A Drunning_tips.rst29 is ``"<suite_glob>[.test_glob]"``.