Update web-platform-tests to revision 2b80e6d28f3c1ca734384ebded282bf07df80657

This commit is contained in:
WPT Sync Bot 2019-10-18 10:32:38 +00:00
parent 32eb858a6a
commit aff72973cf
379 changed files with 13969 additions and 2161 deletions

View file

@ -130,7 +130,12 @@ class Builder(object):
if not source.isTest():
continue
metaData = source.getMetadata(True)
try:
metaData = source.getMetadata(True)
except Exception as error:
self.ui.warn("Exception parsing '", filePath, "': ", error, "\n")
continue
if not metaData:
if (source.errors):
self.ui.warn("Error parsing '", filePath, "': ", ' '.join(source.errors), "\n")