mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 02:42:05 +00:00
follows up #24279 `discard finishTest` was wrong if the test still had a `retries` option: it would just ignore the result of the test. This is an unlikely mistake but we safeguard against it by splitting `finishTest` into two, one that completely ignores the retries option and `finishTestRetryable` which has to be checked for a retry. This also makes the code look slightly better.