diff options
author | Craig Chi <craig08@users.noreply.github.com> | 2020-09-09 10:44:09 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-11 13:35:25 -0700 |
commit | b301fd500c923d01f3cce922eee883e94d4585d5 (patch) | |
tree | a56bedc4bc76faec3f3cfae5cbf3b1ea279d21be /test/fuse/BUILD | |
parent | cc9dff706be5518466ac677c19fc9436e059855d (diff) |
Implement FUSE_SETATTR
This commit implements FUSE_SETATTR command. When a system call modifies
the metadata of a regular file or a folder by chown(2), chmod(2),
truncate(2), utime(2), or utimes(2), they should be translated to
corresponding FUSE_SETATTR command and sent to the FUSE server.
Fixes #3332
Diffstat (limited to 'test/fuse/BUILD')
-rw-r--r-- | test/fuse/BUILD | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/fuse/BUILD b/test/fuse/BUILD index 55ad98748..29b9a9d93 100644 --- a/test/fuse/BUILD +++ b/test/fuse/BUILD @@ -63,6 +63,11 @@ syscall_test( ) syscall_test( + fuse = "True", + test = "//test/fuse/linux:setstat_test", +) + +syscall_test( size = "large", add_overlay = True, debug = False, |