File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -232,22 +232,22 @@ bool static_verifier(
232232
233233 if (e.is_true ())
234234 {
235- m.result () << " Success" ;
235+ m.result () << m. green () << " Success" << m. reset () ;
236236 pass++;
237237 }
238238 else if (e.is_false ())
239239 {
240- m.result () << " Failure (if reachable)" ;
240+ m.result () << m. red () << " Failure" << m. reset () << " (if reachable)" ;
241241 fail++;
242242 }
243243 else if (domain.is_bottom ())
244244 {
245- m.result () << " Success (unreachable)" ;
245+ m.result () << m. green () << " Success" << m. reset () << " (unreachable)" ;
246246 pass++;
247247 }
248248 else
249249 {
250- m.result () << " Unknown" ;
250+ m.result () << m. yellow () << " Unknown" << m. reset () ;
251251 unknown++;
252252 }
253253
@@ -258,10 +258,11 @@ bool static_verifier(
258258 }
259259 }
260260
261- m.status () << " Summary: "
261+ m.status () << m. bold () << " Summary: "
262262 << pass << " pass, "
263263 << fail << " fail if reachable, "
264- << unknown << " unknown\n " ;
264+ << unknown << " unknown"
265+ << m.reset () << messaget::eom;
265266
266267 return false ;
267268}
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ class messaget
291291 return std::string ();
292292 }
293293
294- // / return to default formatting
294+ // / return to default formatting, as defined by clienta
295295 std::string reset () const
296296 {
297297 return command (0 );
You can’t perform that action at this time.
0 commit comments