Add direct flush calls to stderr / stdout.

Change-Id: I272661e276f4968d464706c802e24a0600b9af46

BUG=8393
TEST=N/A

Review URL: http://codereview.chromium.org/4088007
This commit is contained in:
Chris Sosa 2010-10-29 09:33:44 -07:00
parent 99b3f551d8
commit cf51905a08

View File

@ -234,6 +234,10 @@ class ReportGenerator(object):
except:
print 'Could not open %s' % path
# Sometimes the builders exit before these buffers are flushed.
sys.stderr.flush()
sys.stdout.flush()
def Run(self):
"""Runs report generation."""
self._CollectResults()