• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

google / benchmark / 1755
88%
master: 92%

Build:
Build:
LAST BUILD BRANCH: openmp-compatibility
DEFAULT BRANCH: master
Ran 29 Aug 2018 06:23PM UTC
Jobs 1
Files 36
Run time 4s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
1755

Pull #654

travis-ci

web-flow
Mark Set{Items,Bytes}Processed()/{items,bytes}_processed() as deprecated.

They are basically proto-version of custom user counters.
It does not seem that they do anything that custom user counters
don't do. And having two similar entities is not good for generalization.

Migration plan:
* ```
  SetItemsProcessed(<val>)
    =>
  state.counters.insert({
    {"<Name>", benchmark::Counter(<val>, benchmark::Counter::kIsRate)},
    ...
  });
  ```
* ```
  SetBytesProcessed(<val>)
    =>
  state.counters.insert({
    {"<Name>", benchmark::Counter(<val>, benchmark::Counter::kIsRate,
                                  benchmark::Counter::OneK::kIs1024)},
    ...
  });
  ```
* ```
  <Name>_processed()
    =>
  state.counters["<Name>"]
  ```

One thing the custom user counters miss is better support
for units of measurement.

Refs. https://github.com/google/benchmark/issues/627
Pull Request #654: Mark Set{Items,Bytes}Processed()/{items,bytes}_processed() as deprecated.

1538 of 1755 relevant lines covered (87.64%)

4882970.55 hits per line

Jobs
ID Job ID Ran Files Coverage
1 1755.1 (COMPILER=g++ C_COMPILER=gcc BUILD_TYPE=Coverage) 29 Aug 2018 06:24PM UTC 0
87.64
Travis Job 1755.1
Source Files on build 1755
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #1755
  • Pull Request #654
  • PR Base - master (#1754)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc