This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from e619862 [libcxx] [test] Replace _LIBCPP_STD_VER with TEST_STD_VER. new d87eb99 Upgrade in-tree google benchmark to v1.1
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/AUTHORS | 1 + utils/google-benchmark/CMakeLists.txt | 17 +- utils/google-benchmark/CONTRIBUTORS | 1 + utils/google-benchmark/README.md | 28 + .../cmake/AddCXXCompilerFlag.cmake | 2 +- .../google-benchmark/include/benchmark/benchmark.h | 4 +- .../include/benchmark/benchmark_api.h | 409 +++---- utils/google-benchmark/include/benchmark/macros.h | 56 +- .../google-benchmark/include/benchmark/reporter.h | 48 +- utils/google-benchmark/src/CMakeLists.txt | 23 +- utils/google-benchmark/src/arraysize.h | 7 +- utils/google-benchmark/src/benchmark.cc | 1142 +++++--------------- .../google-benchmark/src/benchmark_api_internal.h | 47 + utils/google-benchmark/src/benchmark_register.cc | 439 ++++++++ utils/google-benchmark/src/check.h | 45 +- utils/google-benchmark/src/colorprint.cc | 52 +- utils/google-benchmark/src/colorprint.h | 9 +- utils/google-benchmark/src/commandlineflags.cc | 32 +- utils/google-benchmark/src/commandlineflags.h | 7 +- utils/google-benchmark/src/complexity.cc | 5 +- utils/google-benchmark/src/complexity.h | 9 +- utils/google-benchmark/src/console_reporter.cc | 53 +- utils/google-benchmark/src/csv_reporter.cc | 28 +- utils/google-benchmark/src/internal_macros.h | 38 +- utils/google-benchmark/src/json_reporter.cc | 67 +- utils/google-benchmark/src/log.cc | 40 - utils/google-benchmark/src/log.h | 65 +- utils/google-benchmark/src/mutex.h | 127 ++- utils/google-benchmark/src/re.h | 72 +- utils/google-benchmark/src/re_posix.cc | 59 - utils/google-benchmark/src/re_std.cc | 44 - utils/google-benchmark/src/reporter.cc | 31 +- utils/google-benchmark/src/stat.h | 3 +- utils/google-benchmark/src/string_util.cc | 27 +- utils/google-benchmark/src/string_util.h | 22 +- utils/google-benchmark/src/sysinfo.cc | 182 +--- utils/google-benchmark/src/sysinfo.h | 2 - utils/google-benchmark/src/timers.cc | 195 ++++ utils/google-benchmark/src/timers.h | 48 + utils/google-benchmark/src/walltime.cc | 263 ----- utils/google-benchmark/src/walltime.h | 17 - utils/google-benchmark/test/CMakeLists.txt | 10 +- utils/google-benchmark/test/basic_test.cc | 19 +- utils/google-benchmark/test/benchmark_test.cc | 93 +- utils/google-benchmark/test/complexity_test.cc | 166 +-- utils/google-benchmark/test/cxx03_test.cc | 22 +- utils/google-benchmark/test/diagnostics_test.cc | 17 +- utils/google-benchmark/test/donotoptimize_test.cc | 7 +- utils/google-benchmark/test/filter_test.cc | 35 +- utils/google-benchmark/test/fixture_test.cc | 7 +- utils/google-benchmark/test/map_test.cc | 6 +- .../google-benchmark/test/multiple_ranges_test.cc | 45 +- utils/google-benchmark/test/options_test.cc | 3 +- utils/google-benchmark/test/output_test.h | 29 +- utils/google-benchmark/test/output_test_helper.cc | 252 ++--- .../test/register_benchmark_test.cc | 55 +- .../google-benchmark/test/reporter_output_test.cc | 300 +++-- .../google-benchmark/test/skip_with_error_test.cc | 69 +- utils/google-benchmark/tools/gbench/report.py | 9 +- 59 files changed, 2434 insertions(+), 2476 deletions(-) create mode 100644 utils/google-benchmark/src/benchmark_api_internal.h create mode 100644 utils/google-benchmark/src/benchmark_register.cc delete mode 100644 utils/google-benchmark/src/log.cc delete mode 100644 utils/google-benchmark/src/re_posix.cc delete mode 100644 utils/google-benchmark/src/re_std.cc create mode 100644 utils/google-benchmark/src/timers.cc create mode 100644 utils/google-benchmark/src/timers.h delete mode 100644 utils/google-benchmark/src/walltime.cc delete mode 100644 utils/google-benchmark/src/walltime.h