Skip to content

Commit

Permalink
not executed -> skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
cgay committed Nov 3, 2012
1 parent 1390037 commit 385758b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions report/log-reader.dylan
Expand Up @@ -17,10 +17,10 @@ define constant $testworks-message
define method parse-status
(status-string :: <string>, reason)
select (status-string by \=)
"passed" => $passed;
"failed" => $failed;
"not executed" => $skipped;
"crashed" => recreate-error(reason);
"passed" => $passed;
"failed" => $failed;
"skipped" => $skipped;
"crashed" => recreate-error(reason);
"not implemented" => $not-implemented;
otherwise =>
error("Unexpected status '%s' in report", status-string);
Expand Down
2 changes: 1 addition & 1 deletion reports.dylan
Expand Up @@ -248,7 +248,7 @@ define method print-result-summary
if (total-results == 1) ": " else "s: " end,
passes);
print-percentage(passes, total-results);
test-output("), %d failed, %d not executed, %d not implemented, %d crashed\n",
test-output("), %d failed, %d skipped, %d not implemented, %d crashed\n",
failures, not-executed, not-implemented, crashes);
end method print-result-summary;

Expand Down

0 comments on commit 385758b

Please sign in to comment.