Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUILD] Bump third_party/googletest to same version as bazel #2421

Merged
merged 2 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion third_party/googletest
Submodule googletest updated 77 files
+0 −43 .github/ISSUE_TEMPLATE/00-bug_report.md
+53 −0 .github/ISSUE_TEMPLATE/00-bug_report.yml
+0 −24 .github/ISSUE_TEMPLATE/10-feature_request.md
+33 −0 .github/ISSUE_TEMPLATE/10-feature_request.yml
+4 −0 .github/ISSUE_TEMPLATE/config.yml
+10 −7 .github/workflows/gtest-ci.yml
+6 −1 CMakeLists.txt
+2 −2 CONTRIBUTING.md
+12 −36 README.md
+20 −19 WORKSPACE
+6 −2 ci/linux-presubmit.sh
+4 −2 ci/macos-presubmit.sh
+56 −0 ci/windows-presubmit.bat
+1 −1 docs/_layouts/default.html
+17 −8 docs/advanced.md
+1 −1 docs/faq.md
+1 −1 docs/gmock_cheat_sheet.md
+15 −14 docs/gmock_cook_book.md
+1 −0 docs/primer.md
+8 −9 docs/quickstart-bazel.md
+6 −6 docs/quickstart-cmake.md
+1 −1 docs/reference/testing.md
+1 −1 docs/samples.md
+9 −5 googlemock/include/gmock/gmock-actions.h
+8 −5 googlemock/include/gmock/gmock-function-mocker.h
+34 −24 googlemock/include/gmock/gmock-matchers.h
+38 −7 googlemock/include/gmock/gmock-more-matchers.h
+31 −3 googlemock/include/gmock/gmock-spec-builders.h
+25 −11 googlemock/include/gmock/internal/gmock-internal-utils.h
+5 −4 googlemock/src/gmock-internal-utils.cc
+17 −0 googlemock/src/gmock-matchers.cc
+18 −4 googlemock/src/gmock-spec-builders.cc
+4 −4 googlemock/test/gmock-actions_test.cc
+15 −0 googlemock/test/gmock-function-mocker_test.cc
+41 −0 googlemock/test/gmock-matchers-comparisons_test.cc
+2 −2 googlemock/test/gmock-matchers-containers_test.cc
+15 −1 googlemock/test/gmock-matchers-misc_test.cc
+12 −9 googlemock/test/gmock-spec-builders_test.cc
+3 −0 googlemock/test/gmock_output_test.py
+4 −4 googlemock/test/gmock_output_test_golden.txt
+16 −0 googletest/CMakeLists.txt
+7 −7 googletest/README.md
+19 −5 googletest/cmake/internal_utils.cmake
+1 −1 googletest/include/gtest/gtest-matchers.h
+2 −0 googletest/include/gtest/gtest-message.h
+41 −6 googletest/include/gtest/gtest-param-test.h
+85 −2 googletest/include/gtest/gtest-printers.h
+2 −0 googletest/include/gtest/gtest-spi.h
+2 −0 googletest/include/gtest/gtest-test-part.h
+31 −10 googletest/include/gtest/gtest.h
+2 −1 googletest/include/gtest/internal/gtest-death-test-internal.h
+17 −0 googletest/include/gtest/internal/gtest-filepath.h
+5 −4 googletest/include/gtest/internal/gtest-internal.h
+75 −0 googletest/include/gtest/internal/gtest-param-util.h
+2 −0 googletest/include/gtest/internal/gtest-port-arch.h
+146 −99 googletest/include/gtest/internal/gtest-port.h
+1 −0 googletest/include/gtest/internal/gtest-string.h
+4 −0 googletest/include/gtest/internal/gtest-type-util.h
+2 −2 googletest/src/gtest-death-test.cc
+63 −20 googletest/src/gtest-filepath.cc
+9 −4 googletest/src/gtest-internal-inl.h
+1 −1 googletest/src/gtest-printers.cc
+121 −72 googletest/src/gtest.cc
+12 −0 googletest/src/gtest_main.cc
+1 −0 googletest/test/googletest-color-test.py
+20 −0 googletest/test/googletest-filepath-test.cc
+3 −0 googletest/test/googletest-message-test.cc
+2 −0 googletest/test/googletest-options-test.cc
+71 −11 googletest/test/googletest-param-test-test.cc
+1 −0 googletest/test/googletest-port-test.cc
+32 −1 googletest/test/googletest-printers-test.cc
+1 −0 googletest/test/gtest-typed-test_test.cc
+2 −2 googletest/test/gtest-unittest-api_test.cc
+97 −0 googletest/test/gtest_dirs_test.cc
+1 −0 googletest/test/gtest_pred_impl_unittest.cc
+7 −3 googletest/test/gtest_unittest.cc
+3 −1 googletest/test/gtest_xml_outfile2_test_.cc
2 changes: 1 addition & 1 deletion third_party_release
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
gRPC=v1.49.2
abseil=20220623.1
benchmark=v1.7.1
googletest=release-1.13.0
googletest=1.13.0
ms-gsl=v3.1.0-67-g6f45293
nlohmann-json=v3.11.2
opentelemetry-proto=v1.0.0
Expand Down