[llvm] bbebdbb - [lit] Always print newline before test time/summary

Julian Lettner via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 31 11:43:29 PDT 2019


Author: Julian Lettner
Date: 2019-10-31T11:43:20-07:00
New Revision: bbebdbbd20533fc52f10a76d7a936524b805a712

URL: https://github.com/llvm/llvm-project/commit/bbebdbbd20533fc52f10a76d7a936524b805a712
DIFF: https://github.com/llvm/llvm-project/commit/bbebdbbd20533fc52f10a76d7a936524b805a712.diff

LOG: [lit] Always print newline before test time/summary

Slightly decreases the time I need to parse the test summary.

Added: 
    

Modified: 
    llvm/utils/lit/lit/display.py

Removed: 
    


################################################################################
diff  --git a/llvm/utils/lit/lit/display.py b/llvm/utils/lit/lit/display.py
index e07fc4b4663f..687c57e33853 100644
--- a/llvm/utils/lit/lit/display.py
+++ b/llvm/utils/lit/lit/display.py
@@ -56,8 +56,7 @@ def update(self, test):
     def finish(self):
         if self.progress_bar:
             self.progress_bar.clear()
-        elif self.opts.succinct:
-            sys.stdout.write('\n')
+        sys.stdout.write('\n')
 
     def print_result(self, test):
         if self.progress_bar:


        


More information about the llvm-commits mailing list