diff options
author | Craig Chi <craigchi@google.com> | 2020-09-08 14:32:02 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-11 13:35:25 -0700 |
commit | 88820940a980081711ce848592609dd4192e1be5 (patch) | |
tree | 37661cd06ed83fc55b48721e0e37c13779992b74 /test/fuse/linux/BUILD | |
parent | 0ac6f5546880ba451af3d1746c28318d8763152c (diff) |
Add fuse_fd_util library to include common fuse fd test functions
Diffstat (limited to 'test/fuse/linux/BUILD')
-rw-r--r-- | test/fuse/linux/BUILD | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/fuse/linux/BUILD b/test/fuse/linux/BUILD index cc5bd560e..eb090cbfd 100644 --- a/test/fuse/linux/BUILD +++ b/test/fuse/linux/BUILD @@ -141,6 +141,21 @@ cc_library( ], ) +cc_library( + name = "fuse_fd_util", + testonly = 1, + srcs = ["fuse_fd_util.cc"], + hdrs = ["fuse_fd_util.h"], + deps = [ + gtest, + ":fuse_base", + "//test/util:cleanup", + "//test/util:file_descriptor", + "//test/util:fuse_util", + "//test/util:posix_error", + ], +) + cc_binary( name = "read_test", testonly = 1, |