[zorg] r255145 - [zorg] Add failing code "ERROR" to buildbot step results in LitTestCommand

Ying Chen via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 9 11:49:04 PST 2015


Author: chying
Date: Wed Dec  9 13:49:04 2015
New Revision: 255145

URL: http://llvm.org/viewvc/llvm-project?rev=255145&view=rev
Log:
[zorg] Add failing code "ERROR" to buildbot step results in LitTestCommand

Modified:
    zorg/trunk/zorg/buildbot/commands/LitTestCommand.py

Modified: zorg/trunk/zorg/buildbot/commands/LitTestCommand.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/commands/LitTestCommand.py?rev=255145&r1=255144&r2=255145&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/commands/LitTestCommand.py (original)
+++ zorg/trunk/zorg/buildbot/commands/LitTestCommand.py Wed Dec  9 13:49:04 2015
@@ -19,7 +19,7 @@ class LitLogObserver(LogLineObserver):
 
   # These are the codes for which we will include the log output in the buildbot
   # step results.
-  failingCodes = set(['FAIL', 'XPASS', 'KPASS', 'UNRESOLVED', 'TIMEOUT'])
+  failingCodes = set(['FAIL', 'XPASS', 'KPASS', 'UNRESOLVED', 'TIMEOUT', 'ERROR'])
   # Regular expressions for start of summary marker.
   kStartSummaryRE = re.compile(r'^Failing Tests \(\d*\)$')
 




More information about the llvm-commits mailing list