summaryrefslogtreecommitdiffhomepage
path: root/test/fuse/BUILD
diff options
context:
space:
mode:
authorCraig Chi <craigchi@google.com>2020-09-03 14:06:59 -0700
committerAndrei Vagin <avagin@gmail.com>2020-09-16 12:19:30 -0700
commit18f1e1c91b05059c333197a2a6198716c12508e7 (patch)
tree793ba2059e2facf5f7d9408713103f34db948560 /test/fuse/BUILD
parent7ed4e46a717ece014a962e4b9cacff1ff4c461f1 (diff)
Implement FUSE_CREATE
FUSE_CREATE is called when issuing creat(2) or open(2) with O_CREAT. It creates a new file on the FUSE filesystem. Fixes #3825
Diffstat (limited to 'test/fuse/BUILD')
-rw-r--r--test/fuse/BUILD4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/fuse/BUILD b/test/fuse/BUILD
index 02498b3a1..1a6b5b516 100644
--- a/test/fuse/BUILD
+++ b/test/fuse/BUILD
@@ -52,6 +52,10 @@ syscall_test(
test = "//test/fuse/linux:readdir_test",
)
+syscall_test(
+ fuse = "True",
+ test = "//test/fuse/linux:create_test",
+)
syscall_test(
size = "large",