File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ void static_analyzert<analyzerT>::plain_text_report()
120
120
if (simplified.is_true ())
121
121
{ result () << " SUCCESS" ; pass++; }
122
122
else if (simplified.is_false ())
123
- { result () << " FAILURE" ; fail++; }
123
+ { result () << " FAILURE (if reachable) " ; fail++; }
124
124
else
125
125
{ result () << " UNKNOWN" ; unknown++; }
126
126
result () << eom;
@@ -169,7 +169,7 @@ void static_analyzert<analyzerT>::json_report()
169
169
if (simplified.is_true ())
170
170
j[" status" ]=json_stringt (" SUCCESS" );
171
171
else if (simplified.is_false ())
172
- j[" status" ]=json_stringt (" FAILURE" );
172
+ j[" status" ]=json_stringt (" FAILURE (if reachable) " );
173
173
else
174
174
j[" status" ]=json_stringt (" UNKNOWN" );
175
175
@@ -219,7 +219,7 @@ void static_analyzert<analyzerT>::xml_report()
219
219
if (simplified.is_true ())
220
220
x.set_attribute (" status" , " SUCCESS" );
221
221
else if (simplified.is_false ())
222
- x.set_attribute (" status" , " FAILURE" );
222
+ x.set_attribute (" status" , " FAILURE (if reachable) " );
223
223
else
224
224
x.set_attribute (" status" , " UNKNOWN" );
225
225
You can’t perform that action at this time.
0 commit comments