diff options
author | Craig Chi <craigchi@google.com> | 2020-08-04 12:27:55 -0700 |
---|---|---|
committer | Craig Chi <craigchi@google.com> | 2020-08-04 12:27:55 -0700 |
commit | 21d0334e7f4a98ec49e7f46cacf2d51258eaec33 (patch) | |
tree | 91445db153c48187ee0da351ac1804693f43d4d0 /test/fuse/linux/BUILD | |
parent | 103a178026dc64986ff8329aaeafcd6c1fd34b91 (diff) |
Add FUSE integration test
This commit adds an integration test framework for FUSE support. Please
refer to the test example and test/fuse/README.md for further details.
Fixes #3098
Diffstat (limited to 'test/fuse/linux/BUILD')
-rw-r--r-- | test/fuse/linux/BUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/fuse/linux/BUILD b/test/fuse/linux/BUILD new file mode 100644 index 000000000..cc3383741 --- /dev/null +++ b/test/fuse/linux/BUILD @@ -0,0 +1,21 @@ +load("//tools:defs.bzl", "cc_library", "gtest") + +package( + default_visibility = ["//:sandbox"], + licenses = ["notice"], +) + +cc_library( + name = "fuse_base", + testonly = 1, + srcs = [ + "fuse_base.h", + "fuse_base.cc", + ], + deps = [ + gtest, + "//test/util:posix_error", + "//test/util:test_util", + "@com_google_absl//absl/strings:str_format", + ], +) |