Skip to content

Commit ea8bbd2

Browse files
committed
Minor fix in tests/run.py
1 parent 7270b15 commit ea8bbd2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/run.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ def run_test(
156156
os.write(sys.stdout.fileno(), buff)
157157
try:
158158
res.wait(timeout=0.1)
159+
buff: bytes = res.stdout.read1()
160+
total_output += buff
161+
os.write(sys.stdout.fileno(), buff)
159162
break
160163
except subprocess.TimeoutExpired:
161164
# Subprocess is still running

0 commit comments

Comments
 (0)