[llvm-commits] [zorg] r152562 - /zorg/trunk/zorg/buildbot/commands/StandardizedTest.py

Tobias Grosser grosser at fim.uni-passau.de
Mon Mar 12 09:28:53 PDT 2012


Author: grosser
Date: Mon Mar 12 11:28:53 2012
New Revision: 152562

URL: http://llvm.org/viewvc/llvm-project?rev=152562&view=rev
Log:
Add REGRESSED and IMPROVED as known test codes

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

Modified: zorg/trunk/zorg/buildbot/commands/StandardizedTest.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/commands/StandardizedTest.py?rev=152562&r1=152561&r2=152562&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/commands/StandardizedTest.py (original)
+++ zorg/trunk/zorg/buildbot/commands/StandardizedTest.py Mon Mar 12 11:28:53 2012
@@ -8,9 +8,9 @@
     # FIXME: We should process things in a test observer instead of at the end.
 
     knownCodes = ['FAIL', 'XFAIL', 'PASS', 'XPASS',
-                  'UNRESOLVED', 'UNSUPPORTED']
+                  'UNRESOLVED', 'UNSUPPORTED', 'IMPROVED', 'REGRESSED']
     failingCodes = set(['FAIL', 'XPASS', 'UNRESOLVED'])
-    warningCodes = set(['IGNORE PASS', 'IGNORE XFAIL'])
+    warningCodes = set(['IGNORE PASS', 'IGNORE XFAIL', 'REGRESSED'])
 
     # The list of all possible codes, including flaky and ignored codes. This is
     # the display order, as well.





More information about the llvm-commits mailing list