Commit 6f149520 authored by Denis Hananein's avatar Denis Hananein
Browse files

Add return for GTEST_FAIL_AT

parent a9b2f049
...@@ -1735,8 +1735,8 @@ class TestWithParam : public Test, public WithParamInterface<T> {}; ...@@ -1735,8 +1735,8 @@ class TestWithParam : public Test, public WithParamInterface<T> {};
// Like GTEST_FAIL(), but at the given source file location. // Like GTEST_FAIL(), but at the given source file location.
#define GTEST_FAIL_AT(file, line) \ #define GTEST_FAIL_AT(file, line) \
GTEST_MESSAGE_AT_(file, line, "Failed", \ return GTEST_MESSAGE_AT_(file, line, "Failed", \
::testing::TestPartResult::kFatalFailure) ::testing::TestPartResult::kFatalFailure)
// Define this macro to 1 to omit the definition of FAIL(), which is a // Define this macro to 1 to omit the definition of FAIL(), which is a
// generic name and clashes with some other libraries. // generic name and clashes with some other libraries.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment