Searched defs:is_glob (Results 1 - 2 of 2) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dexpand.cpp71 impl::is_glob(const std::string& glob) function in class:impl
H A Dexpand_test.cpp43 ATF_TEST_CASE(is_glob); variable
44 ATF_TEST_CASE_HEAD(is_glob)
46 set_md_var("descr", "Tests the is_glob function.");
48 ATF_TEST_CASE_BODY(is_glob)
50 using atf::expand::is_glob;
52 ATF_REQUIRE(!is_glob(""));
53 ATF_REQUIRE(!is_glob("a"));
54 ATF_REQUIRE(!is_glob("foo"));
56 ATF_REQUIRE( is_glob("*"));
57 ATF_REQUIRE( is_glob("
[all...]

Completed in 239 milliseconds