Lines Matching refs:is_executable
534 ATF_TEST_CASE(is_executable);
535 ATF_TEST_CASE_HEAD(is_executable) in ATF_TEST_CASE_HEAD() argument
539 ATF_TEST_CASE_BODY(is_executable) in ATF_TEST_CASE_BODY() argument
541 using tools::fs::is_executable; in ATF_TEST_CASE_BODY()
546 ATF_REQUIRE( is_executable(path("files"))); in ATF_TEST_CASE_BODY()
547 ATF_REQUIRE( is_executable(path("files/."))); in ATF_TEST_CASE_BODY()
548 ATF_REQUIRE( is_executable(path("files/.."))); in ATF_TEST_CASE_BODY()
549 ATF_REQUIRE( is_executable(path("files/dir"))); in ATF_TEST_CASE_BODY()
551 ATF_REQUIRE(!is_executable(path("non-existent"))); in ATF_TEST_CASE_BODY()
553 ATF_REQUIRE(!is_executable(path("files/reg"))); in ATF_TEST_CASE_BODY()
555 ATF_REQUIRE( is_executable(path("files/reg"))); in ATF_TEST_CASE_BODY()
736 ATF_ADD_TEST_CASE(tcs, is_executable); in ATF_INIT_TEST_CASES()