Skip to content

Commit a711578

Browse files
nodejs-github-botaduh95
authored andcommittedDec 19, 2023
deps: update googletest to 530d5c8
1 parent 898149f commit a711578

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎deps/googletest/include/gtest/gtest.h

+1
Original file line numberDiff line numberDiff line change
@@ -1751,6 +1751,7 @@ class TestWithParam : public Test, public WithParamInterface<T> {};
17511751
// generic name and clashes with some other libraries.
17521752
#if !(defined(GTEST_DONT_DEFINE_FAIL) && GTEST_DONT_DEFINE_FAIL)
17531753
#define FAIL() GTEST_FAIL()
1754+
#define FAIL_AT(file, line) GTEST_FAIL_AT(file, line)
17541755
#endif
17551756

17561757
// Generates a success with a generic message.

‎deps/googletest/src/gtest.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -6203,8 +6203,8 @@ void UnitTestImpl::ListTestsMatchingFilter() {
62036203
#if GTEST_HAS_FILE_SYSTEM
62046204
const std::string& output_format = UnitTestOptions::GetOutputFormat();
62056205
if (output_format == "xml" || output_format == "json") {
6206-
FILE* fileout = OpenFileForWriting(
6207-
UnitTestOptions::GetAbsolutePathToOutputFile().c_str());
6206+
FILE* fileout =
6207+
OpenFileForWriting(UnitTestOptions::GetAbsolutePathToOutputFile());
62086208
std::stringstream stream;
62096209
if (output_format == "xml") {
62106210
XmlUnitTestResultPrinter(

0 commit comments

Comments
 (0)