MultiTestRunner: Stop printing XFAILs on every run, this doesn't really have any

value.

llvm-svn: 77566
This commit is contained in:
Daniel Dunbar 2009-07-30 01:57:45 +00:00
parent 49a6f16b7c
commit ba848438e3
1 changed files with 1 additions and 2 deletions

View File

@ -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: