diff options
author | Craig Chi <craigchi@google.com> | 2020-08-14 10:17:08 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-16 12:19:30 -0700 |
commit | d928d3c00a66a29933eee9671e3558cd8163337f (patch) | |
tree | 4ecb4d807f5928401741147ed0ad81817b5df2db /test/util/BUILD | |
parent | a289c3862653cded271408b31a9e704be615503a (diff) |
Add function generating array of iovec with different FUSE structs
This commit adds a function in the newly created fuse_util library,
which accepts a variable number of arguments and data structures.
Fixes #3609
Diffstat (limited to 'test/util/BUILD')
-rw-r--r-- | test/util/BUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/util/BUILD b/test/util/BUILD index 2a17c33ee..b0c2c2a5a 100644 --- a/test/util/BUILD +++ b/test/util/BUILD @@ -46,6 +46,12 @@ cc_library( ) cc_library( + name = "fuse_util", + testonly = 1, + hdrs = ["fuse_util.h"], +) + +cc_library( name = "proc_util", testonly = 1, srcs = ["proc_util.cc"], |