mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1140394 - Protect standard output from interleaving. r=ahal
This commit is contained in:
parent
dec04be154
commit
d31eed60e1
@ -161,7 +161,9 @@ class B2GDesktopReftest(RefTest):
|
||||
return cmd, args
|
||||
|
||||
def _on_output(self, line):
|
||||
print(line)
|
||||
sys.stdout.write("%s\n" % line)
|
||||
sys.stdout.flush()
|
||||
|
||||
# TODO use structured logging
|
||||
if "TEST-START" in line and "|" in line:
|
||||
self.last_test = line.split("|")[1].strip()
|
||||
|
Loading…
Reference in New Issue
Block a user