Searched refs:test_open_rel (Results 1 – 1 of 1) sorted by relevance
/linux-6.14.4/tools/testing/selftests/landlock/ |
D | fs_test.c | 428 static int test_open_rel(const int dirfd, const char *const path, in test_open_rel() function 448 return test_open_rel(AT_FDCWD, path, flags); in test_open() 1922 test_open_rel(dirfd, "..", O_RDONLY)); in test_relative_path() 1923 ASSERT_EQ(0, test_open_rel(dirfd, ".", O_RDONLY)); in test_relative_path() 1927 ASSERT_EQ(0, test_open_rel(dirfd, "./s2d3", O_RDONLY)); in test_relative_path() 1930 ASSERT_EQ(0, test_open_rel(dirfd, "./s1d3", O_RDONLY)); in test_relative_path() 1935 ASSERT_EQ(0, test_open_rel(dirfd, "/..", O_RDONLY)); in test_relative_path() 1936 ASSERT_EQ(0, test_open_rel(dirfd, "/", O_RDONLY)); in test_relative_path() 1937 ASSERT_EQ(0, test_open_rel(dirfd, "/f1", O_RDONLY)); in test_relative_path() 1938 ASSERT_EQ(0, test_open_rel(dirfd, "/s1d3", O_RDONLY)); in test_relative_path() [all …]
|