Skip to content

Commit e84b5a7

Browse files
committed
always log hpy test output at the end
1 parent b8c2cd8 commit e84b5a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1069,9 +1069,9 @@ def is_alive(self):
10691069
alive[i] = t.is_alive()
10701070

10711071
thread_errors = [t.result for t in threads if t.result != 0]
1072+
for t in threads:
1073+
mx.log("\n\n### Output of thread %r: \n\n%s" % (t.name, t.out))
10721074
if any(thread_errors):
1073-
for t in threads:
1074-
mx.log_error("\n\n### Output of thread %r: \n\n%s" % (t.name, t.out))
10751075
if nonZeroIsFatal:
10761076
mx.abort("At least one HPy testing thread failed.")
10771077

0 commit comments

Comments
 (0)