From fd89d5ad055b2af62e681065cddaca5f8c51fcda Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Wed, 13 Feb 2019 05:41:04 +0000 Subject: [PATCH] Compile the tests without -Werror for now I'm working on resolving the issue upstream on github --- lib/googletest/gmock/tests/Makefile | 3 +++ lib/googletest/gtest/tests/Makefile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/lib/googletest/gmock/tests/Makefile b/lib/googletest/gmock/tests/Makefile index de70266031ed..d489c4089c07 100644 --- a/lib/googletest/gmock/tests/Makefile +++ b/lib/googletest/gmock/tests/Makefile @@ -4,4 +4,7 @@ PLAIN_TESTS_CXX+= gmock_stress_test LIBADD+= gmock +# XXX: https://github.com/google/googletest/pull/2119 +NO_WERROR= + .include diff --git a/lib/googletest/gtest/tests/Makefile b/lib/googletest/gtest/tests/Makefile index 3c176b3ea42a..0d1f9041107e 100644 --- a/lib/googletest/gtest/tests/Makefile +++ b/lib/googletest/gtest/tests/Makefile @@ -28,4 +28,7 @@ CXXFLAGS+= -I${GOOGLETEST_SRCROOT} LIBADD= gtest +# XXX: https://github.com/google/googletest/pull/2119 +NO_WERROR= + .include