summaryrefslogtreecommitdiffhomepage
path: root/test/perf/linux/BUILD
diff options
context:
space:
mode:
authorChong Cai <chongc@google.com>2021-07-23 14:33:27 -0700
committergVisor bot <gvisor-bot@google.com>2021-07-23 14:35:42 -0700
commitd2479383639ab15301c4535a91cbbbeb22635a7e (patch)
treefecfead59cfc796d71d2c78ead824d381908342b /test/perf/linux/BUILD
parent3d0a9300050ad9a72d452ec862827e35e3f38dcc (diff)
Add verity open benchmark test
PiperOrigin-RevId: 386533065
Diffstat (limited to 'test/perf/linux/BUILD')
-rw-r--r--test/perf/linux/BUILD19
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",
+ ],
+)