diff options
Diffstat (limited to 'tests/testament/tester.nim')
-rw-r--r-- | tests/testament/tester.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/testament/tester.nim b/tests/testament/tester.nim index 7efd405bb..d4a161dab 100644 --- a/tests/testament/tester.nim +++ b/tests/testament/tester.nim @@ -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 |