Bug 1417230 - Do not fail when a skipped web-platform test is verified; r=jgraham

This commit is contained in:
Geoff Brown 2017-11-15 08:16:39 -07:00
Родитель ade9d452f7
Коммит 4ec80cab97
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -86,6 +86,8 @@ class LogHandler(reader.LogHandler):
def is_inconsistent(results_dict, iterations):
"""Return whether or not a single test is inconsistent."""
if 'SKIP' in results_dict:
return False
return len(results_dict) > 1 or sum(results_dict.values()) != iterations