diff options
author | Chong Cai <chongc@google.com> | 2021-05-26 12:19:11 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-05-26 12:23:14 -0700 |
commit | 9fcc44f991203343438b489389c2b861040086ac (patch) | |
tree | f8e05f6e093838a11b5be204095c9f6110ca327f /test/syscalls/linux/BUILD | |
parent | c006b9b1c813089f22ae979fb3198227be25c20a (diff) |
Add verity getdents tests
PiperOrigin-RevId: 376001603
Diffstat (limited to 'test/syscalls/linux/BUILD')
-rw-r--r-- | test/syscalls/linux/BUILD | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index f3df889b6..9a912dba8 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -962,6 +962,22 @@ cc_binary( ) cc_binary( + name = "verity_getdents_test", + testonly = 1, + srcs = ["verity_getdents.cc"], + linkstatic = 1, + deps = [ + "//test/util:capability_util", + gtest, + "//test/util:fs_util", + "//test/util:temp_path", + "//test/util:test_main", + "//test/util:test_util", + "//test/util:verity_util", + ], +) + +cc_binary( name = "getrandom_test", testonly = 1, srcs = ["getrandom.cc"], |