diff options
author | Craig Chi <craig08@users.noreply.github.com> | 2020-09-03 14:06:59 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-11 13:35:25 -0700 |
commit | deb8e24614036d61cf98a3eb0ca1e131834c05bd (patch) | |
tree | 609a177d22576e3e7eaed608b9b626d4670c3871 /test/fuse/BUILD | |
parent | 2541b190061c44fdd7fe825418c70944e70ff87a (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/BUILD | 4 |
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", |