diff options
author | Craig Chi <craigchi@google.com> | 2020-09-08 14:32:02 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-16 12:19:30 -0700 |
commit | 1146ab6bac7c4d34a9b78a6c318db3dae8150b4d (patch) | |
tree | 2e34e32265820f87926eb904a45175df32583cb3 /test/fuse/linux/BUILD | |
parent | e63abd82ddfbaeb35c1dfc7c553db3d78207b037 (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, |