Lines Matching refs:strings
248 std::set< std::string > strings; in ATF_TEST_CASE_BODY() local
249 strings.insert("First"); in ATF_TEST_CASE_BODY()
250 strings.insert("Second"); in ATF_TEST_CASE_BODY()
252 ATF_REQUIRE( atf::utils::grep_collection("irs", strings)); in ATF_TEST_CASE_BODY()
253 ATF_REQUIRE( atf::utils::grep_collection("cond", strings)); in ATF_TEST_CASE_BODY()
254 ATF_REQUIRE(!atf::utils::grep_collection("Third", strings)); in ATF_TEST_CASE_BODY()
260 std::vector< std::string > strings; in ATF_TEST_CASE_BODY() local
261 strings.push_back("First"); in ATF_TEST_CASE_BODY()
262 strings.push_back("Second"); in ATF_TEST_CASE_BODY()
264 ATF_REQUIRE( atf::utils::grep_collection("irs", strings)); in ATF_TEST_CASE_BODY()
265 ATF_REQUIRE( atf::utils::grep_collection("cond", strings)); in ATF_TEST_CASE_BODY()
266 ATF_REQUIRE(!atf::utils::grep_collection("Third", strings)); in ATF_TEST_CASE_BODY()