summaryrefslogtreecommitdiffhomepage
path: root/test/fuse/BUILD
diff options
context:
space:
mode:
authorRidwan Sharif <ridwanmsharif@google.com>2020-07-27 14:42:31 -0400
committerAndrei Vagin <avagin@gmail.com>2020-09-16 12:19:30 -0700
commit4a5857d644ae0e62090bbbed86852dceca79395c (patch)
treedb83d5ffdd979334781957050fbf6eb6d43a4741 /test/fuse/BUILD
parentbc07df88878f47a496f8b364b286bf0b11c0e76f (diff)
fuse: Implement IterDirents for directory file description
Fixes #3255. This change adds support for IterDirents. You can now use `ls` in the FUSE sandbox. Co-authored-by: Craig Chi <craigchi@google.com>
Diffstat (limited to 'test/fuse/BUILD')
-rw-r--r--test/fuse/BUILD6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/fuse/BUILD b/test/fuse/BUILD
index 30d2a871f..a1b29aa33 100644
--- a/test/fuse/BUILD
+++ b/test/fuse/BUILD
@@ -43,7 +43,11 @@ syscall_test(
)
syscall_test(
+ fuse = "True",
test = "//test/fuse/linux:rmdir_test",
- vfs2 = "True",
+)
+
+syscall_test(
fuse = "True",
+ test = "//test/fuse/linux:readdir_test",
)