nim-lang / Nim

Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).
https://nim-lang.org
Other
16.56k stars 1.47k forks source link

Add name of current processing test in testament. #4269

Open cheatfate opened 8 years ago

cheatfate commented 8 years ago

If the test task stuck, you will never know what the name of test you have failed... So it will be good to show name of currently processing test. Like: PROCESSING: [testname] PASSED: [testname] or FAILED: [testname].

Araq commented 8 years ago

Why not make the tester use timeouts instead?

cheatfate commented 8 years ago

yeah, timeouts also can solve this problem...

dom96 commented 8 years ago

IMO still a good idea to know what the current processing test is. Should be possible to erase the message and write "SUCCESS"/"FAILURE" over it too.