Skip to content

Commit f9960b3

Browse files
nodejs-github-botUlisesGascon
authored andcommitted
deps: update googletest to 116b7e5
PR-URL: #50324 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent 179b4b6 commit f9960b3

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

deps/googletest/include/gtest/internal/gtest-death-test-internal.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ GTEST_DECLARE_string_(internal_run_death_test);
5252
namespace testing {
5353
namespace internal {
5454

55-
// Names of the flags (needed for parsing Google Test flags).
56-
const char kDeathTestStyleFlag[] = "death_test_style";
57-
const char kDeathTestUseFork[] = "death_test_use_fork";
55+
// Name of the flag (needed for parsing Google Test flag).
5856
const char kInternalRunDeathTestFlag[] = "internal_run_death_test";
5957

6058
#ifdef GTEST_HAS_DEATH_TEST

deps/googletest/include/gtest/internal/gtest-param-util.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -584,8 +584,8 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase {
584584

585585
GTEST_CHECK_(IsValidParamName(param_name))
586586
<< "Parameterized test name '" << param_name
587-
<< "' is invalid (contains spaces, dashes, underscores, or "
588-
"non-alphanumeric characters), in "
587+
<< "' is invalid (contains spaces, dashes, or any "
588+
"non-alphanumeric characters other than underscores), in "
589589
<< file << " line " << line << "" << std::endl;
590590

591591
GTEST_CHECK_(test_param_names.count(param_name) == 0)

doc/contributing/maintaining/maintaining-dependencies.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This a list of all the dependencies:
1515
* [c-ares 1.20.1][]
1616
* [cjs-module-lexer 1.2.2][]
1717
* [corepack][]
18-
* [googletest 2dd1c13][]
18+
* [googletest 116b7e5][]
1919
* [histogram 0.11.8][]
2020
* [icu-small 73.2][]
2121
* [libuv 1.46.0][]
@@ -189,7 +189,7 @@ In practical terms, Corepack will let you use Yarn and pnpm without having to
189189
install them - just like what currently happens with npm, which is shipped
190190
by Node.js by default.
191191

192-
### googletest 2dd1c13
192+
### googletest 116b7e5
193193

194194
The [googletest](https://github.com/google/googletest) dependency is Google’s
195195
C++ testing and mocking framework.
@@ -326,7 +326,7 @@ performance improvements not currently available in standard zlib.
326326
[cjs-module-lexer 1.2.2]: #cjs-module-lexer-122
327327
[corepack]: #corepack
328328
[dependency-update-action]: ../../../.github/workflows/tools.yml
329-
[googletest 2dd1c13]: #googletest-2dd1c13
329+
[googletest 116b7e5]: #googletest-116b7e5
330330
[histogram 0.11.8]: #histogram-0118
331331
[icu-small 73.2]: #icu-small-732
332332
[libuv 1.46.0]: #libuv-1460

0 commit comments

Comments
 (0)