testament: be verbose when --pedantic fails

This commit is contained in:
Andreas Rumpf
2017-02-03 10:29:08 +01:00
parent 848676cec6
commit 4ac6a26031

View File

@@ -459,7 +459,9 @@ proc main() =
backend.close()
if optPedantic:
var failed = r.total - r.passed - r.skipped
if failed > 0: quit(QuitFailure)
if failed > 0:
echo "FAILURE! total: ", r.total, " passed: ", r.passed, " skipped: ", r.skipped
quit(QuitFailure)
if paramCount() == 0:
quit Usage