This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 3ea08cd28 propagate __config_site includes when building benchmarks new 622fc11b5 Upgrade Google Benchmark library to 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: utils/google-benchmark/.clang-format | 5 + utils/google-benchmark/.gitignore | 12 + utils/google-benchmark/.travis-libcxx-setup.sh | 28 ++ utils/google-benchmark/.travis.yml | 199 ++++++++++++ utils/google-benchmark/.ycm_extra_conf.py | 115 +++++++ utils/google-benchmark/AUTHORS | 1 + utils/google-benchmark/BUILD.bazel | 42 +++ utils/google-benchmark/CMakeLists.txt | 19 +- utils/google-benchmark/CONTRIBUTORS | 1 + utils/google-benchmark/README.md | 146 +++++---- utils/google-benchmark/WORKSPACE | 7 + utils/google-benchmark/appveyor.yml | 50 +++ utils/google-benchmark/cmake/CXXFeatureCheck.cmake | 10 +- utils/google-benchmark/cmake/GetGitVersion.cmake | 2 +- utils/google-benchmark/cmake/HandleGTest.cmake | 8 +- utils/google-benchmark/docs/tools.md | 99 ++---- .../google-benchmark/include/benchmark/benchmark.h | 162 ++++++--- utils/google-benchmark/mingw.py | 320 ++++++++++++++++++ utils/google-benchmark/src/benchmark.cc | 297 +++++------------ .../google-benchmark/src/benchmark_api_internal.cc | 15 + .../google-benchmark/src/benchmark_api_internal.h | 11 +- utils/google-benchmark/src/benchmark_register.cc | 30 +- utils/google-benchmark/src/benchmark_runner.cc | 350 ++++++++++++++++++++ utils/google-benchmark/src/benchmark_runner.h | 51 +++ utils/google-benchmark/src/colorprint.cc | 2 +- utils/google-benchmark/src/complexity.cc | 13 +- utils/google-benchmark/src/console_reporter.cc | 24 +- utils/google-benchmark/src/csv_reporter.cc | 14 +- utils/google-benchmark/src/cycleclock.h | 2 +- utils/google-benchmark/src/internal_macros.h | 14 +- utils/google-benchmark/src/json_reporter.cc | 43 ++- utils/google-benchmark/src/reporter.cc | 17 + utils/google-benchmark/src/sleep.cc | 2 +- utils/google-benchmark/src/statistics.cc | 37 ++- utils/google-benchmark/src/sysinfo.cc | 35 +- utils/google-benchmark/src/thread_manager.h | 2 - utils/google-benchmark/src/timers.cc | 6 +- utils/google-benchmark/test/AssemblyTests.cmake | 46 +++ utils/google-benchmark/test/BUILD | 65 ++++ utils/google-benchmark/test/CMakeLists.txt | 12 + utils/google-benchmark/test/complexity_test.cc | 39 ++- .../test/display_aggregates_only_test.cc | 43 +++ utils/google-benchmark/test/memory_manager_test.cc | 42 +++ utils/google-benchmark/test/output_test.h | 7 + utils/google-benchmark/test/output_test_helper.cc | 45 ++- .../test/register_benchmark_test.cc | 4 +- .../test/report_aggregates_only_test.cc | 39 +++ .../google-benchmark/test/reporter_output_test.cc | 352 +++++++++++++++----- .../google-benchmark/test/skip_with_error_test.cc | 4 +- .../test/user_counters_tabular_test.cc | 118 ++++--- utils/google-benchmark/test/user_counters_test.cc | 134 +++++--- .../test/user_counters_thousands_test.cc | 161 +++++++++ utils/google-benchmark/tools/compare.py | 41 ++- utils/google-benchmark/tools/compare_bench.py | 67 ---- .../tools/gbench/Inputs/test3_run0.json | 26 ++ .../tools/gbench/Inputs/test3_run1.json | 32 +- utils/google-benchmark/tools/gbench/report.py | 361 +++++++++++++++------ 57 files changed, 2966 insertions(+), 863 deletions(-) create mode 100644 utils/google-benchmark/.clang-format create mode 100644 utils/google-benchmark/.travis-libcxx-setup.sh create mode 100644 utils/google-benchmark/.travis.yml create mode 100644 utils/google-benchmark/.ycm_extra_conf.py create mode 100644 utils/google-benchmark/BUILD.bazel create mode 100644 utils/google-benchmark/WORKSPACE create mode 100644 utils/google-benchmark/appveyor.yml create mode 100644 utils/google-benchmark/mingw.py create mode 100644 utils/google-benchmark/src/benchmark_api_internal.cc create mode 100644 utils/google-benchmark/src/benchmark_runner.cc create mode 100644 utils/google-benchmark/src/benchmark_runner.h create mode 100644 utils/google-benchmark/test/AssemblyTests.cmake create mode 100644 utils/google-benchmark/test/BUILD create mode 100644 utils/google-benchmark/test/display_aggregates_only_test.cc create mode 100644 utils/google-benchmark/test/memory_manager_test.cc create mode 100644 utils/google-benchmark/test/report_aggregates_only_test.cc create mode 100644 utils/google-benchmark/test/user_counters_thousands_test.cc delete mode 100755 utils/google-benchmark/tools/compare_bench.py