diff options
author | Chong Cai <chongc@google.com> | 2021-07-23 14:33:27 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-07-23 14:35:42 -0700 |
commit | d2479383639ab15301c4535a91cbbbeb22635a7e (patch) | |
tree | fecfead59cfc796d71d2c78ead824d381908342b /test/perf/linux/BUILD | |
parent | 3d0a9300050ad9a72d452ec862827e35e3f38dcc (diff) |
Add verity open benchmark test
PiperOrigin-RevId: 386533065
Diffstat (limited to 'test/perf/linux/BUILD')
-rw-r--r-- | test/perf/linux/BUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/perf/linux/BUILD b/test/perf/linux/BUILD index e76e359ff..b4f192227 100644 --- a/test/perf/linux/BUILD +++ b/test/perf/linux/BUILD @@ -370,3 +370,22 @@ cc_binary( "//test/util:test_main", ], ) + +cc_binary( + name = "verity_open_benchmark", + testonly = 1, + srcs = [ + "verity_open_benchmark.cc", + ], + deps = [ + gbenchmark, + gtest, + "//test/util:capability_util", + "//test/util:fs_util", + "//test/util:logging", + "//test/util:temp_path", + "//test/util:test_main", + "//test/util:test_util", + "//test/util:verity_util", + ], +) |