We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7d266b commit 2a7f159Copy full SHA for 2a7f159
1 file changed
contest/hw/lib/runner.py
@@ -205,6 +205,9 @@ def run_tests(test_dir, results_dir):
205
retcode = ret.returncode
206
stdout = ret.stdout.decode('utf-8', 'ignore')
207
stderr = ret.stderr.decode('utf-8', 'ignore')
208
+ if not stdout and not stderr:
209
+ print(f"[{test_idx+1}/{len(tests)}] {test_name}: "
210
+ f"no output (rc={retcode})")
211
except subprocess.TimeoutExpired:
212
retcode = 1
213
stdout = ''
0 commit comments