]> granicus.if.org Git - clang/commitdiff
MultiTestRunner: Stop printing XFAILs on every run, this doesn't really have any
authorDaniel Dunbar <daniel@zuster.org>
Thu, 30 Jul 2009 01:57:45 +0000 (01:57 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Thu, 30 Jul 2009 01:57:45 +0000 (01:57 +0000)
value.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77566 91177308-0d34-0410-b5e6-96231b3b80d8

utils/test/MultiTestRunner.py

index 3ac40e15c13a1f33fbc1cb81532e8cffd86ecbba..aaceb7f657e72b1192472e1103c97728fc02495b 100755 (executable)
@@ -316,8 +316,7 @@ def main():
             if t.code not in byCode:
                 byCode[t.code] = []
             byCode[t.code].append(t)
-    for title,code in (('Expected Failures', TestStatus.XFail),
-                       ('Unexpected Passing Tests', TestStatus.XPass),
+    for title,code in (('Unexpected Passing Tests', TestStatus.XPass),
                        ('Failing Tests', TestStatus.Fail)):
         elts = byCode.get(code)
         if not elts: