diff options
Diffstat (limited to 'absl/container')
-rw-r--r-- | absl/container/BUILD.bazel | 9 | ||||
-rw-r--r-- | absl/container/fixed_array_benchmark.cc | 2 | ||||
-rw-r--r-- | absl/container/inlined_vector_benchmark.cc | 2 |
3 files changed, 2 insertions, 11 deletions
diff --git a/absl/container/BUILD.bazel b/absl/container/BUILD.bazel index 897be90fc9e4..119d5c88de2a 100644 --- a/absl/container/BUILD.bazel +++ b/absl/container/BUILD.bazel @@ -42,11 +42,6 @@ cc_test( name = "fixed_array_test", srcs = ["fixed_array_test.cc"], copts = ABSL_TEST_COPTS + ABSL_EXCEPTIONS_FLAG, - tags = [ - "no_test_android_arm", - "no_test_android_arm64", - "no_test_android_x86", - ], deps = [ ":fixed_array", "//absl/base:exception_testing", @@ -74,7 +69,7 @@ cc_test( tags = ["benchmark"], deps = [ ":fixed_array", - "@com_github_google_benchmark//:benchmark", + "@com_github_google_benchmark//:benchmark_main", ], ) @@ -131,7 +126,7 @@ cc_test( ":inlined_vector", "//absl/base", "//absl/strings", - "@com_github_google_benchmark//:benchmark", + "@com_github_google_benchmark//:benchmark_main", ], ) diff --git a/absl/container/fixed_array_benchmark.cc b/absl/container/fixed_array_benchmark.cc index 2d39898d8a5f..b4f0cf2aeb04 100644 --- a/absl/container/fixed_array_benchmark.cc +++ b/absl/container/fixed_array_benchmark.cc @@ -64,5 +64,3 @@ BENCHMARK_TEMPLATE(BM_FixedArray, std::string, 256)->Range(0, 1 << 16); BENCHMARK_TEMPLATE(BM_FixedArray, std::string, 65536)->Range(0, 1 << 16); } // namespace - -BENCHMARK_MAIN(); diff --git a/absl/container/inlined_vector_benchmark.cc b/absl/container/inlined_vector_benchmark.cc index c6bc5cd96dc8..5977bc934f0e 100644 --- a/absl/container/inlined_vector_benchmark.cc +++ b/absl/container/inlined_vector_benchmark.cc @@ -372,5 +372,3 @@ void BM_StdVectorEmpty(benchmark::State& state) { BENCHMARK(BM_StdVectorEmpty); } // namespace - -BENCHMARK_MAIN(); |