summaryrefslogtreecommitdiffhomepage
path: root/test/util/fuse_util.cc
AgeCommit message (Collapse)Author
2020-09-16test/fuse: clean upAndrei Vagin
2020-09-16Add fh support for revise attr and fstat(2) testCraig Chi
According to Linux 4.4's FUSE behavior, the flags and fh attributes in FUSE_GETATTR are only used in read, write, and lseek. fstat(2) doesn't use them either. Add tests to ensure the requests sent from FUSE module are consistent with Linux's. Updates #3655
2020-09-16Add default attr in fuse_utilCraig Chi
fuse_util provides utilities for fuse testing. Add a function to return a stub fuse_attr struct with specified mode and nodeid.
2020-09-16Implement FUSE_OPEN/OPENDIRBoyuan He
Fixes #3174