This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 1fceb5e Remove *super* old test suite results doc for Linux and Windows. new 30b48cb Update in-tree Google Benchmark to current ToT.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: benchmarks/CMakeLists.txt | 7 +- benchmarks/ContainerBenchmarks.hpp | 14 +- benchmarks/algorithms.bench.cpp | 2 +- benchmarks/unordered_set_operations.bench.cpp | 2 +- utils/google-benchmark/AUTHORS | 1 + utils/google-benchmark/README.md | 110 ++++++--- .../include/benchmark/benchmark_api.h | 167 ++++++++----- utils/google-benchmark/include/benchmark/macros.h | 10 +- .../google-benchmark/include/benchmark/reporter.h | 15 +- utils/google-benchmark/src/benchmark.cc | 263 +++++++++++++-------- utils/google-benchmark/src/colorprint.cc | 16 +- utils/google-benchmark/src/colorprint.h | 1 + utils/google-benchmark/src/complexity.cc | 4 +- utils/google-benchmark/src/console_reporter.cc | 41 ++-- utils/google-benchmark/src/cycleclock.h | 6 +- utils/google-benchmark/src/sysinfo.cc | 8 +- utils/google-benchmark/test/CMakeLists.txt | 6 + utils/google-benchmark/test/basic_test.cc | 20 +- utils/google-benchmark/test/benchmark_test.cc | 26 +- utils/google-benchmark/test/complexity_test.cc | 48 ++-- utils/google-benchmark/test/fixture_test.cc | 2 +- utils/google-benchmark/test/map_test.cc | 6 +- .../google-benchmark/test/multiple_ranges_test.cc | 46 ++++ utils/google-benchmark/test/options_test.cc | 6 +- .../test/register_benchmark_test.cc | 149 ++++++++++++ .../google-benchmark/test/reporter_output_test.cc | 16 +- .../google-benchmark/test/skip_with_error_test.cc | 4 +- utils/google-benchmark/tools/compare_bench.py | 30 +++ .../tools/gbench/Inputs/test1_run1.json | 46 ++++ .../tools/gbench/Inputs/test1_run2.json | 46 ++++ utils/google-benchmark/tools/gbench/__init__.py | 8 + utils/google-benchmark/tools/gbench/report.py | 136 +++++++++++ utils/google-benchmark/tools/gbench/util.py | 130 ++++++++++ 33 files changed, 1102 insertions(+), 290 deletions(-) create mode 100644 utils/google-benchmark/test/multiple_ranges_test.cc create mode 100644 utils/google-benchmark/test/register_benchmark_test.cc create mode 100644 utils/google-benchmark/tools/compare_bench.py create mode 100644 utils/google-benchmark/tools/gbench/Inputs/test1_run1.json create mode 100644 utils/google-benchmark/tools/gbench/Inputs/test1_run2.json create mode 100644 utils/google-benchmark/tools/gbench/__init__.py create mode 100644 utils/google-benchmark/tools/gbench/report.py create mode 100644 utils/google-benchmark/tools/gbench/util.py