Lines Matching refs:exists

473         ATF_REQUIRE(!tools::fs::exists(tmpl));  in ATF_TEST_CASE_BODY()
474 ATF_REQUIRE( tools::fs::exists(t1)); in ATF_TEST_CASE_BODY()
475 ATF_REQUIRE( tools::fs::exists(t2)); in ATF_TEST_CASE_BODY()
501 ATF_REQUIRE(!tools::fs::exists(t1)); in ATF_TEST_CASE_BODY()
503 ATF_REQUIRE(!tools::fs::exists(t2)); in ATF_TEST_CASE_BODY()
511 ATF_TEST_CASE(exists);
512 ATF_TEST_CASE_HEAD(exists) in ATF_TEST_CASE_HEAD() argument
516 ATF_TEST_CASE_BODY(exists) in ATF_TEST_CASE_BODY() argument
518 using tools::fs::exists; in ATF_TEST_CASE_BODY()
523 ATF_REQUIRE( exists(path("files"))); in ATF_TEST_CASE_BODY()
524 ATF_REQUIRE(!exists(path("file"))); in ATF_TEST_CASE_BODY()
525 ATF_REQUIRE(!exists(path("files2"))); in ATF_TEST_CASE_BODY()
527 ATF_REQUIRE( exists(path("files/."))); in ATF_TEST_CASE_BODY()
528 ATF_REQUIRE( exists(path("files/.."))); in ATF_TEST_CASE_BODY()
529 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
530 ATF_REQUIRE( exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
531 ATF_REQUIRE(!exists(path("files/foo"))); in ATF_TEST_CASE_BODY()
565 using tools::fs::exists; in ATF_TEST_CASE_BODY()
571 ATF_REQUIRE( exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
573 ATF_REQUIRE(!exists(path("files/reg"))); in ATF_TEST_CASE_BODY()
575 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
577 ATF_REQUIRE( exists(path("files/dir"))); in ATF_TEST_CASE_BODY()
596 ATF_REQUIRE(tools::fs::exists(p)); in ATF_TEST_CASE_BODY()
597 ATF_REQUIRE(tools::fs::exists(p / "dir")); in ATF_TEST_CASE_BODY()
598 ATF_REQUIRE(tools::fs::exists(p / "dir/1")); in ATF_TEST_CASE_BODY()
599 ATF_REQUIRE(tools::fs::exists(p / "dir/2")); in ATF_TEST_CASE_BODY()
600 ATF_REQUIRE(tools::fs::exists(p / "reg")); in ATF_TEST_CASE_BODY()
602 ATF_REQUIRE(!tools::fs::exists(p)); in ATF_TEST_CASE_BODY()
645 ATF_REQUIRE(!tools::fs::exists(p)); in ATF_TEST_CASE_BODY()
735 ATF_ADD_TEST_CASE(tcs, exists); in ATF_INIT_TEST_CASES()