Searched refs:test_open_rel (Results 1 – 1 of 1) sorted by relevance
/Linux-v6.1/tools/testing/selftests/landlock/ |
D | fs_test.c | 262 static int test_open_rel(const int dirfd, const char *const path, in test_open_rel() function 282 return test_open_rel(AT_FDCWD, path, flags); in test_open() 1641 test_open_rel(dirfd, "..", O_RDONLY)); in test_relative_path() 1642 ASSERT_EQ(0, test_open_rel(dirfd, ".", O_RDONLY)); in test_relative_path() 1646 ASSERT_EQ(0, test_open_rel(dirfd, "./s2d3", O_RDONLY)); in test_relative_path() 1649 ASSERT_EQ(0, test_open_rel(dirfd, "./s1d3", O_RDONLY)); in test_relative_path() 1654 ASSERT_EQ(0, test_open_rel(dirfd, "/..", O_RDONLY)); in test_relative_path() 1655 ASSERT_EQ(0, test_open_rel(dirfd, "/", O_RDONLY)); in test_relative_path() 1656 ASSERT_EQ(0, test_open_rel(dirfd, "/f1", O_RDONLY)); in test_relative_path() 1657 ASSERT_EQ(0, test_open_rel(dirfd, "/s1d3", O_RDONLY)); in test_relative_path() [all …]
|