changes made for cts to work

This commit is contained in:
Kunal Mohan 2020-07-25 17:47:09 +05:30
parent 10ba6a6928
commit 32a4104f4a
8 changed files with 99 additions and 3 deletions

View file

@ -515,7 +515,7 @@ def check_manifest_dirs(config_file, print_text=True):
p = parser.parse(lines)
paths = rec_parse(wpt_path("web-platform-tests"), p)
for idx, path in enumerate(paths):
if '_mozilla' in path or '_webgl' in path:
if '_mozilla' in path or '_webgl' in path or '_webgpu' in path:
continue
if not os.path.isdir(path):
yield(config_file, idx + 1, "Path in manifest was not found: {}".format(path))