1
0
mirror of https://github.com/google/benchmark.git synced 2025-04-06 09:31:03 +08:00

Remove public declaration for compute stats

This commit is contained in:
Eric Fiselier 2015-03-03 14:19:36 -05:00
parent 09885baa82
commit 3fda19d384
3 changed files with 10 additions and 3 deletions

View File

@ -188,6 +188,8 @@ class BenchmarkReporter {
virtual ~BenchmarkReporter();
};
namespace internal {
// Run all benchmarks whose name is a partial match for the regular
// expression in "spec". The results of benchmark runs are fed to "reporter".
void RunMatchingBenchmarks(const std::string& spec,
@ -210,5 +212,6 @@ class ConsoleReporter : public BenchmarkReporter {
int name_field_width_;
};
} // end namespace internal
} // end namespace benchmark
#endif // BENCHMARK_BENCHMARK_H_

View File

@ -706,6 +706,8 @@ void ComputeStats(const std::vector<BenchmarkReporter::Run>& reports,
BenchmarkReporter::~BenchmarkReporter() {}
namespace internal {
bool ConsoleReporter::ReportContext(const Context& context) {
name_field_width_ = context.name_field_width;
@ -855,6 +857,8 @@ void FindMatchingBenchmarkNames(const std::string& spec,
}
}
} // end namespace internal
void RunSpecifiedBenchmarks(BenchmarkReporter* reporter) {
std::string spec = FLAGS_benchmark_filter;
if (spec.empty()) {
@ -863,8 +867,8 @@ void RunSpecifiedBenchmarks(BenchmarkReporter* reporter) {
if (spec == "all") {
spec = "."; // Regexp that matches all benchmarks
}
ConsoleReporter default_reporter;
RunMatchingBenchmarks(spec, reporter ? reporter : &default_reporter);
internal::ConsoleReporter default_reporter;
internal::RunMatchingBenchmarks(spec, reporter ? reporter : &default_reporter);
std::exit(0);
}
}

View File

@ -156,7 +156,7 @@ static void BM_LongTest(benchmark::State& state) {
}
BENCHMARK(BM_LongTest)->Range(1<<16,1<<28);
class TestReporter : public benchmark::ConsoleReporter {
class TestReporter : public benchmark::internal::ConsoleReporter {
public:
virtual bool ReportContext(const Context& context) {
return ConsoleReporter::ReportContext(context);