summaryrefslogtreecommitdiffhomepage
path: root/test/fuse/linux/BUILD
diff options
context:
space:
mode:
authorBoyuan He <heboyuan@google.com>2020-08-18 23:09:34 +0000
committerAndrei Vagin <avagin@gmail.com>2020-09-16 12:19:30 -0700
commitb50c03b5715905ebd82b1006c1bb2e2d4eb9334d (patch)
tree729c3425215e877d432f33969dedbabe36840eef /test/fuse/linux/BUILD
parentb53e10f391929e4ad9345a823a0cf33bcfedf413 (diff)
Implement FUSE_SYMLINK
Fixes #3452
Diffstat (limited to 'test/fuse/linux/BUILD')
-rw-r--r--test/fuse/linux/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/fuse/linux/BUILD b/test/fuse/linux/BUILD
index c0f917606..df42857f6 100644
--- a/test/fuse/linux/BUILD
+++ b/test/fuse/linux/BUILD
@@ -58,6 +58,19 @@ cc_binary(
],
)
+cc_binary(
+ name = "symlink_test",
+ testonly = 1,
+ srcs = ["symlink_test.cc"],
+ deps = [
+ gtest,
+ ":fuse_base",
+ "//test/util:fuse_util",
+ "//test/util:test_main",
+ "//test/util:test_util",
+ ],
+)
+
cc_library(
name = "fuse_base",
testonly = 1,