Skip to content

Commit 4447c75

Browse files
authored
Update GoogleTest dependency to 1.15.2 (#1736)
This updates to a version of GoogleTest that fixes google/googletest#4581 for downstream users of rules_python Cherry-pick of d0159ea
1 parent 7e5c339 commit 4447c75

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ bazel_dep(name = "google_benchmark",
3535
dev_dependency = True)
3636

3737
bazel_dep(name = "googletest",
38-
version = "1.15.0",
38+
version = "1.15.2",
3939
repo_name = "com_google_googletest")
4040

4141
bazel_dep(name = "platforms",

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
2121
# GoogleTest/GoogleMock framework. Used by most unit-tests.
2222
http_archive(
2323
name = "com_google_googletest",
24-
sha256 = "7315acb6bf10e99f332c8a43f00d5fbb1ee6ca48c52f6b936991b216c586aaad",
25-
strip_prefix = "googletest-1.15.0",
24+
sha256 = "7b42b4d6ed48810c5362c265a17faebe90dc2373c885e5216439d37927f02926",
25+
strip_prefix = "googletest-1.15.2",
2626
# Keep this URL in sync with the version in ci/cmake_common.sh and
2727
# ci/windows_msvc_cmake.bat.
28-
urls = ["https://github.com/google/googletest/releases/download/v1.15.0/googletest-1.15.0.tar.gz"],
28+
urls = ["https://github.com/google/googletest/releases/download/v1.15.2/googletest-1.15.2.tar.gz"],
2929
)
3030

3131
# RE2 (the regular expression library used by GoogleTest)

ci/cmake_common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414

1515
# The commit of GoogleTest to be used in the CMake tests in this directory.
1616
# Keep this in sync with the commit in the WORKSPACE file.
17-
readonly ABSL_GOOGLETEST_VERSION="1.15.0"
17+
readonly ABSL_GOOGLETEST_VERSION="1.15.2"
1818

1919
readonly ABSL_GOOGLETEST_DOWNLOAD_URL="https://github.com/google/googletest/releases/download/v${ABSL_GOOGLETEST_VERSION}/googletest-${ABSL_GOOGLETEST_VERSION}.tar.gz"

ci/windows_msvc_cmake.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ SETLOCAL ENABLEDELAYEDEXPANSION
1616

1717
:: The version of GoogleTest to be used in the CMake tests in this directory.
1818
:: Keep this in sync with the version in the WORKSPACE file.
19-
SET ABSL_GOOGLETEST_VERSION=1.15.0
19+
SET ABSL_GOOGLETEST_VERSION=1.15.2
2020
SET ABSL_GOOGLETEST_DOWNLOAD_URL=https://github.com/google/googletest/releases/download/v%ABSL_GOOGLETEST_VERSION%/googletest-%ABSL_GOOGLETEST_VERSION%.tar.gz
2121

2222
:: Replace '\' with '/' in Windows paths for CMake.

0 commit comments

Comments
 (0)