diff options
author | Chong Cai <chongc@google.com> | 2021-04-05 11:56:07 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-04-05 12:01:44 -0700 |
commit | e21a71bff18ba9da30a0ef977c747376d51ce8cb (patch) | |
tree | 7168ba15700e33a262681c55f516c3338f8c2430 /test/syscalls/linux/BUILD | |
parent | 58afd120d35c385d98ad0dfef0be454532035180 (diff) |
Allow user mount for verity fs
Allow user mounting a verity fs on an existing mount by specifying mount
flags root_hash and lower_path.
PiperOrigin-RevId: 366843846
Diffstat (limited to 'test/syscalls/linux/BUILD')
-rw-r--r-- | test/syscalls/linux/BUILD | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index a9fa93437..4571c706b 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -1304,6 +1304,20 @@ cc_binary( ) cc_binary( + name = "verity_mount_test", + testonly = 1, + srcs = ["verity_mount.cc"], + linkstatic = 1, + deps = [ + gtest, + "//test/util:capability_util", + "//test/util:temp_path", + "//test/util:test_main", + "//test/util:test_util", + ], +) + +cc_binary( name = "mremap_test", testonly = 1, srcs = ["mremap.cc"], |