diff options
author | Chong Cai <chongc@google.com> | 2021-08-04 17:15:09 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-08-04 17:18:02 -0700 |
commit | b9780f96be58ba0cff8612eef4e909431421e936 (patch) | |
tree | 5c77f4c984cb43f21da8b6c06e6ae0d830b7c3e2 /test/perf/linux/BUILD | |
parent | cbb99336cee7d37f4050875a95946ca88b7ac690 (diff) |
Add verity_randread benchmark test
PiperOrigin-RevId: 388819374
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 fed5778df..61ed98ff5 100644 --- a/test/perf/linux/BUILD +++ b/test/perf/linux/BUILD @@ -426,6 +426,25 @@ cc_binary( ) cc_binary( + name = "verity_randread_benchmark", + testonly = 1, + srcs = [ + "verity_randread_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", + ], +) + +cc_binary( name = "verity_open_read_close_benchmark", testonly = 1, srcs = [ |