File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,10 +69,10 @@ TEST(JsonChecker, Reader) {
69
69
70
70
GenericDocument<UTF8<>, CrtAllocator> document; // Use Crt allocator to check exception-safety (no memory leak)
71
71
document.Parse (json);
72
- EXPECT_TRUE (document.HasParseError ());
72
+ EXPECT_TRUE (document.HasParseError ()) << filename ;
73
73
74
74
document.Parse <kParseIterativeFlag >(json);
75
- EXPECT_TRUE (document.HasParseError ());
75
+ EXPECT_TRUE (document.HasParseError ()) << filename ;
76
76
77
77
free (json);
78
78
}
@@ -89,10 +89,10 @@ TEST(JsonChecker, Reader) {
89
89
90
90
GenericDocument<UTF8<>, CrtAllocator> document; // Use Crt allocator to check exception-safety (no memory leak)
91
91
document.Parse (json);
92
- EXPECT_FALSE (document.HasParseError ());
92
+ EXPECT_FALSE (document.HasParseError ()) << filename ;
93
93
94
94
document.Parse <kParseIterativeFlag >(json);
95
- EXPECT_FALSE (document.HasParseError ());
95
+ EXPECT_FALSE (document.HasParseError ()) << filename ;
96
96
97
97
free (json);
98
98
}
You can’t perform that action at this time.
0 commit comments