Use external benchmark API header

PiperOrigin-RevId: 339310928
This commit is contained in:
leveldb Team 2020-10-27 12:59:41 -07:00 committed by Chris Mumford
parent ed781070b4
commit 99ab4730d6

View File

@ -7,8 +7,8 @@
#include <atomic>
#include <string>
#include "testing/base/public/benchmark.h"
#include "gtest/gtest.h"
#include "third_party/benchmark/include/benchmark/benchmark.h"
#include "db/db_impl.h"
#include "db/filename.h"
#include "db/version_set.h"
@ -2298,6 +2298,6 @@ BENCHMARK(BM_LogAndApply)->Arg(1)->Arg(100)->Arg(10000)->Arg(100000);
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
RunSpecifiedBenchmarks();
benchmark::RunSpecifiedBenchmarks();
return RUN_ALL_TESTS();
}