From 29af6e088da304fdb71b733a5a376a08abf378ae Mon Sep 17 00:00:00 2001 From: Hong Xu Date: Thu, 12 Jun 2025 12:57:43 -0700 Subject: [PATCH] Bump GoogleTest to v1.13.0 (#29) Summary: Following up {D76177075}. GitHub build is failing in main because GoogleTest v1.8.0 doesn't support `REGISTER_TYPED_TEST_SUITE_P`. Not bumping to v1.17 to be safe because v1.14.0+ requires C++14. Pull Request resolved: https://github.com/facebook/SPARTA/pull/29 Differential Revision: D76534898 --- cmake_modules/gtest.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake_modules/gtest.cmake.in b/cmake_modules/gtest.cmake.in index 0a92d2d..b83aa44 100644 --- a/cmake_modules/gtest.cmake.in +++ b/cmake_modules/gtest.cmake.in @@ -9,7 +9,7 @@ project("googletest") include(ExternalProject) ExternalProject_Add(googletest GIT_REPOSITORY https://github.com/google/googletest.git - GIT_TAG release-1.8.1 + GIT_TAG v1.13.0 SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-src" BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/googletest-build" CONFIGURE_COMMAND ""