mirror of
https://github.com/google/googletest.git
synced 2025-04-04 21:15:03 +00:00
Merge 1f32636560
into 52204f78f9
This commit is contained in:
commit
ad19c71de9
3 changed files with 38 additions and 1 deletions
|
@ -301,6 +301,8 @@ void ReportUninterestingCall(CallReaction reaction, const std::string& msg) {
|
|||
"knowing-when-to-expect-useoncall for details.\n",
|
||||
stack_frames_to_skip);
|
||||
break;
|
||||
case kFail:
|
||||
[[fallthrough]];
|
||||
default: // FAIL
|
||||
Expect(false, nullptr, -1, msg);
|
||||
}
|
||||
|
|
|
@ -3274,6 +3274,8 @@ static const char* GetAnsiColorCode(GTestColor color) {
|
|||
return "2";
|
||||
case GTestColor::kYellow:
|
||||
return "3";
|
||||
case GTestColor::kDefault:
|
||||
[[fallthrough]];
|
||||
default:
|
||||
assert(false);
|
||||
return "9";
|
||||
|
@ -3529,6 +3531,12 @@ void PrettyUnitTestResultPrinter::OnTestPartResult(
|
|||
// If the test part succeeded, we don't need to do anything.
|
||||
case TestPartResult::kSuccess:
|
||||
return;
|
||||
case TestPartResult::kNonFatalFailure:
|
||||
[[fallthrough]];
|
||||
case TestPartResult::kFatalFailure:
|
||||
[[fallthrough]];
|
||||
case TestPartResult::kSkip:
|
||||
[[fallthrough]];
|
||||
default:
|
||||
// Print failure message from the assertion
|
||||
// (e.g. expected this and got that).
|
||||
|
@ -3747,6 +3755,12 @@ void BriefUnitTestResultPrinter::OnTestPartResult(
|
|||
// If the test part succeeded, we don't need to do anything.
|
||||
case TestPartResult::kSuccess:
|
||||
return;
|
||||
case TestPartResult::kNonFatalFailure:
|
||||
[[fallthrough]];
|
||||
case TestPartResult::kFatalFailure:
|
||||
[[fallthrough]];
|
||||
case TestPartResult::kSkip:
|
||||
[[fallthrough]];
|
||||
default:
|
||||
// Print failure message from the assertion
|
||||
// (e.g. expected this and got that).
|
||||
|
|
|
@ -154,7 +154,7 @@ TEST_F(StreamingListenerTest, OnTestEnd) {
|
|||
EXPECT_EQ("event=TestEnd&passed=1&elapsed_time=0ms\n", *output());
|
||||
}
|
||||
|
||||
TEST_F(StreamingListenerTest, OnTestPartResult) {
|
||||
TEST_F(StreamingListenerTest, OnTestPartResultWithFatalFailure) {
|
||||
*output() = "";
|
||||
streamer_.OnTestPartResult(TestPartResult(TestPartResult::kFatalFailure,
|
||||
"foo.cc", 42, "failed=\n&%"));
|
||||
|
@ -165,6 +165,27 @@ TEST_F(StreamingListenerTest, OnTestPartResult) {
|
|||
*output());
|
||||
}
|
||||
|
||||
TEST_F(StreamingListenerTest, OnTestPartResultWithNonFatalFailure) {
|
||||
*output() = "";
|
||||
streamer_.OnTestPartResult(TestPartResult(
|
||||
TestPartResult::kNonFatalFailure, "foo.cc", 42, "failed=\n&%"));
|
||||
|
||||
// Meta characters in the failure message should be properly escaped.
|
||||
EXPECT_EQ(
|
||||
"event=TestPartResult&file=foo.cc&line=42&message=failed%3D%0A%26%25\n",
|
||||
*output());
|
||||
}
|
||||
|
||||
TEST_F(StreamingListenerTest, OnTestPartResultWithSkip) {
|
||||
*output() = "";
|
||||
streamer_.OnTestPartResult(TestPartResult(
|
||||
TestPartResult::kSkip, "foo.cc", 42, "failed=\n&%"));
|
||||
|
||||
// Meta characters in the failure message should be properly escaped.
|
||||
EXPECT_EQ(
|
||||
"event=TestPartResult&file=foo.cc&line=42&message=failed%3D%0A%26%25\n",
|
||||
*output());
|
||||
}
|
||||
#endif // GTEST_CAN_STREAM_RESULTS_
|
||||
|
||||
// Provides access to otherwise private parts of the TestEventListeners class
|
||||
|
|
Loading…
Add table
Reference in a new issue