aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-30 01:57:45 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-30 01:57:45 +0000
commitcddab4aed4775120751bf42623579ab74cc7685e (patch)
tree100bd550fe0e59966e02df26449d85237652716b
parent97ab3941effe1f508c7113d9aa0c2887774f6fa8 (diff)
MultiTestRunner: Stop printing XFAILs on every run, this doesn't really have any
value. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77566 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/test/MultiTestRunner.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/test/MultiTestRunner.py b/utils/test/MultiTestRunner.py
index 3ac40e15c1..aaceb7f657 100755
--- a/utils/test/MultiTestRunner.py
+++ b/utils/test/MultiTestRunner.py
@@ -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: