diff --git a/run.dylan b/run.dylan index e90229a..331b65e 100644 --- a/run.dylan +++ b/run.dylan @@ -410,7 +410,7 @@ define method show-progress $reset-text-attributes, result.result-time) else - test-output("Running suite %=%s%=:\n", + test-output("Suite %=%s%=:\n", $component-name-text-attributes, suite.component-name, $reset-text-attributes); @@ -438,8 +438,12 @@ define method show-progress format-bytes(result.result-bytes)); reason & test-output(" %s\n", reason); else - test-output("Running %s %=%s%=:%s", - test.component-type-name, + test-output("%s %=%s%=:%s", + if (instance?(test, )) + "Benchmark" + else + "Test" + end, $component-name-text-attributes, test.component-name, $reset-text-attributes,