summaryrefslogtreecommitdiff
path: root/test/sailtest.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sailtest.py')
-rw-r--r--test/sailtest.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/sailtest.py b/test/sailtest.py
index 32d09aa9..5ee87b08 100644
--- a/test/sailtest.py
+++ b/test/sailtest.py
@@ -46,6 +46,7 @@ def banner(string):
print '-' * len(string)
print string
print '-' * len(string)
+ sys.stdout.flush()
class Results:
def __init__(self, name):
@@ -63,6 +64,7 @@ class Results:
else:
self.passes += 1
self.xml += ' <testcase name="{}"/>\n'.format(test)
+ sys.stdout.flush()
def finish(self):
print '{}{} passes and {} failures{}'.format(color.NOTICE, self.passes, self.failures, color.END)