We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6733c1b commit f7a9269Copy full SHA for f7a9269
bin/testcase.py
@@ -414,10 +414,8 @@ def _run_validators(
414
issues.append("All validators accepted.")
415
elif ExecStatus.REJECTED not in results:
416
issues.append(f"At least one validator must exit with {config.RTV_WA}.")
417
- else:
418
- if ExecStatus.TIMEOUT in results:
419
- issues.append("Validator timed out.")
420
- # Output validators should _never_ crash, so this should not be inside the 'else'?
+ elif ExecStatus.TIMEOUT in results:
+ issues.append("Validator timed out.")
421
if output_validator_crash:
422
issues.append("Output Validator crashed.")
423
0 commit comments