Lines Matching refs:is_executable
468 ATF_TEST_CASE(is_executable);
469 ATF_TEST_CASE_HEAD(is_executable) in ATF_TEST_CASE_HEAD() argument
473 ATF_TEST_CASE_BODY(is_executable) in ATF_TEST_CASE_BODY() argument
475 using atf::fs::is_executable; in ATF_TEST_CASE_BODY()
480 ATF_REQUIRE( is_executable(path("files"))); in ATF_TEST_CASE_BODY()
481 ATF_REQUIRE( is_executable(path("files/."))); in ATF_TEST_CASE_BODY()
482 ATF_REQUIRE( is_executable(path("files/.."))); in ATF_TEST_CASE_BODY()
483 ATF_REQUIRE( is_executable(path("files/dir"))); in ATF_TEST_CASE_BODY()
485 ATF_REQUIRE(!is_executable(path("non-existent"))); in ATF_TEST_CASE_BODY()
487 ATF_REQUIRE(!is_executable(path("files/reg"))); in ATF_TEST_CASE_BODY()
489 ATF_REQUIRE( is_executable(path("files/reg"))); in ATF_TEST_CASE_BODY()
543 ATF_ADD_TEST_CASE(tcs, is_executable); in ATF_INIT_TEST_CASES()