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