[PATCH] [zorg] Lit parser should ignore leading whitespace in log file.

Galina gkistanova at gmail.com
Wed Apr 8 11:18:12 PDT 2015


It seems my comment to the line 51 was lost in the original message. Sorry for this.
Here it is.


REPOSITORY
  rL LLVM

================
Comment at: zorg/buildbot/commands/LitTestCommand.py:51
@@ -50,3 +50,3 @@
     # If this is a stop marker, process the test info.
-    if self.kTestVerboseLogStopRE.match(line):
+    if self.kTestVerboseLogStopRE.match(line.strip()):
       self.testInfoFinished()
----------------
lstrip() if you really want to remove the leading whitespace.

http://reviews.llvm.org/D8878

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/






More information about the llvm-commits mailing list