Lines Matching refs:exists
442 ATF_TEST_CASE(exists);
443 ATF_TEST_CASE_HEAD(exists) in ATF_TEST_CASE_HEAD() argument
447 ATF_TEST_CASE_BODY(exists) in ATF_TEST_CASE_BODY() argument
449 using atf::fs::exists; in ATF_TEST_CASE_BODY()
454 ATF_REQUIRE( exists(path("files"))); in ATF_TEST_CASE_BODY()
455 ATF_REQUIRE(!exists(path("file"))); in ATF_TEST_CASE_BODY()
456 ATF_REQUIRE(!exists(path("files2"))); in ATF_TEST_CASE_BODY()
458 ATF_REQUIRE( exists(path("files/."))); in ATF_TEST_CASE_BODY()
459 ATF_REQUIRE( exists(path("files/.."))); in ATF_TEST_CASE_BODY()
460 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
461 ATF_REQUIRE( exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
462 ATF_REQUIRE(!exists(path("files/foo"))); in ATF_TEST_CASE_BODY()
496 using atf::fs::exists; in ATF_TEST_CASE_BODY()
502 ATF_REQUIRE( exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
504 ATF_REQUIRE(!exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
506 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
508 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
539 ATF_ADD_TEST_CASE(tcs, exists); in ATF_INIT_TEST_CASES()