diff options
author | Chong Cai <chongc@google.com> | 2021-08-03 10:54:20 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-08-03 10:56:32 -0700 |
commit | ceab3327c5bf9b9962d776b85a8a99407ab172f4 (patch) | |
tree | 597ab7da32cc1bc36cf786b2a8129ec48f36dd3b /test/perf/linux/BUILD | |
parent | 4f6c1f30937ebb0a9be6685cfab577b0e5c5a3ac (diff) |
Add verity open_read_close benchmark test
PiperOrigin-RevId: 388494554
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 8a3216550..fed5778df 100644 --- a/test/perf/linux/BUILD +++ b/test/perf/linux/BUILD @@ -424,3 +424,22 @@ cc_binary( "//test/util:verity_util", ], ) + +cc_binary( + name = "verity_open_read_close_benchmark", + testonly = 1, + srcs = [ + "verity_open_read_close_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", + ], +) |