Searched refs:matches_glob (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/external/bsd/atf/dist/tools/
H A Dexpand_test.cpp70 set_md_var("descr", "Tests the matches_glob function by using plain "
75 using tools::expand::matches_glob;
77 ATF_REQUIRE( matches_glob("", ""));
78 ATF_REQUIRE(!matches_glob("a", ""));
79 ATF_REQUIRE(!matches_glob("", "a"));
81 ATF_REQUIRE( matches_glob("ab", "ab"));
82 ATF_REQUIRE(!matches_glob("abc", "ab"));
83 ATF_REQUIRE(!matches_glob("ab", "abc"));
89 set_md_var("descr", "Tests the matches_glob function by using the '*' "
94 using tools::expand::matches_glob;
[all...]
H A Dexpand.hpp57 bool matches_glob(const std::string&, const std::string&);
73 if (matches_glob(glob, *iter))
H A Dexpand.cpp78 impl::matches_glob(const std::string& glob, const std::string& candidate) function in class:impl

Completed in 67 milliseconds