Lines Matching refs:exists
445 ATF_TEST_CASE(exists);
446 ATF_TEST_CASE_HEAD(exists) in ATF_TEST_CASE_HEAD() argument
450 ATF_TEST_CASE_BODY(exists) in ATF_TEST_CASE_BODY() argument
452 using atf::fs::exists; in ATF_TEST_CASE_BODY()
457 ATF_REQUIRE( exists(path("files"))); in ATF_TEST_CASE_BODY()
458 ATF_REQUIRE(!exists(path("file"))); in ATF_TEST_CASE_BODY()
459 ATF_REQUIRE(!exists(path("files2"))); in ATF_TEST_CASE_BODY()
461 ATF_REQUIRE( exists(path("files/."))); in ATF_TEST_CASE_BODY()
462 ATF_REQUIRE( exists(path("files/.."))); in ATF_TEST_CASE_BODY()
463 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
464 ATF_REQUIRE( exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
465 ATF_REQUIRE(!exists(path("files/foo"))); in ATF_TEST_CASE_BODY()
499 using atf::fs::exists; in ATF_TEST_CASE_BODY()
505 ATF_REQUIRE( exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
507 ATF_REQUIRE(!exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
509 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
511 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
542 ATF_ADD_TEST_CASE(tcs, exists); in ATF_INIT_TEST_CASES()