diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-14 23:34:45 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-14 23:34:45 +0000 |
commit | bbbd98608746f447a442de0b2bb318d9bf5a504d (patch) | |
tree | ff1d47bd352d644598dda1a898fcc414404de6b4 | |
parent | 2733b669ae5424c4a0fff49f7361b21a730eb3df (diff) |
lit: flush stdout in no-fancy-progress-bar mode as well.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79056 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/test/MultiTestRunner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/test/MultiTestRunner.py b/utils/test/MultiTestRunner.py index a48ba61e3f..c94f114e3c 100755 --- a/utils/test/MultiTestRunner.py +++ b/utils/test/MultiTestRunner.py @@ -106,6 +106,8 @@ class TestingProgressDisplay: print tr.output print "*" * 20 + sys.stdout.flush() + class TestResult: def __init__(self, path, code, output, elapsed): self.path = path |