File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -232,22 +232,22 @@ bool static_verifier(
232
232
233
233
if (e.is_true ())
234
234
{
235
- m.result () << " Success" ;
235
+ m.result () << m. green () << " Success" << m. reset () ;
236
236
pass++;
237
237
}
238
238
else if (e.is_false ())
239
239
{
240
- m.result () << " Failure (if reachable)" ;
240
+ m.result () << m. red () << " Failure" << m. reset () << " (if reachable)" ;
241
241
fail++;
242
242
}
243
243
else if (domain.is_bottom ())
244
244
{
245
- m.result () << " Success (unreachable)" ;
245
+ m.result () << m. green () << " Success" << m. reset () << " (unreachable)" ;
246
246
pass++;
247
247
}
248
248
else
249
249
{
250
- m.result () << " Unknown" ;
250
+ m.result () << m. yellow () << " Unknown" << m. reset () ;
251
251
unknown++;
252
252
}
253
253
@@ -258,10 +258,11 @@ bool static_verifier(
258
258
}
259
259
}
260
260
261
- m.status () << " Summary: "
261
+ m.status () << m. bold () << " Summary: "
262
262
<< pass << " pass, "
263
263
<< fail << " fail if reachable, "
264
- << unknown << " unknown\n " ;
264
+ << unknown << " unknown"
265
+ << m.reset () << messaget::eom;
265
266
266
267
return false ;
267
268
}
You can’t perform that action at this time.
0 commit comments