Don't report new XFAILs
This commit is contained in:
parent
03383da762
commit
bd3eb30564
1 changed files with 3 additions and 0 deletions
|
@ -204,6 +204,9 @@ class DejaResults(object):
|
||||||
if key not in old_res[0] or old_res[0][key] != 'PASS':
|
if key not in old_res[0] or old_res[0][key] != 'PASS':
|
||||||
old_res[0][key] = 'PASS'
|
old_res[0][key] = 'PASS'
|
||||||
continue
|
continue
|
||||||
|
if results[0][key] == 'XFAIL':
|
||||||
|
# We don't report new XFAILs
|
||||||
|
continue
|
||||||
# We report both PASS -> FAIL and FAIL -> PASS, as well as
|
# We report both PASS -> FAIL and FAIL -> PASS, as well as
|
||||||
# new FAIL and new PASS.
|
# new FAIL and new PASS.
|
||||||
if key not in old_res[0]:
|
if key not in old_res[0]:
|
||||||
|
|
Loading…
Reference in a new issue