Fix verify action by rerun gen_ts_dep_list.py

Change-Id: I11cdb607ca94a1c88c1e579779afb92116d12e29
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/87303
Reviewed-by: Austin Eng <enga@chromium.org>
Commit-Queue: Shrek Shao <shrekshao@google.com>
This commit is contained in:
Shrek Shao 2022-04-19 18:08:34 +00:00 committed by Dawn LUCI CQ
parent 37200bd0be
commit 1d1fcdd005
2 changed files with 3 additions and 2 deletions

View File

@ -246,6 +246,7 @@ src/webgpu/api/validation/queue/copyToTexture/CopyExternalImageToTexture.spec.ts
src/webgpu/api/validation/queue/destroyed/query_set.spec.ts src/webgpu/api/validation/queue/destroyed/query_set.spec.ts
src/webgpu/api/validation/render_pass/resolve.spec.ts src/webgpu/api/validation/render_pass/resolve.spec.ts
src/webgpu/api/validation/render_pass/storeOp.spec.ts src/webgpu/api/validation/render_pass/storeOp.spec.ts
src/webgpu/api/validation/resource_usages/buffer/in_pass_encoder.spec.ts
src/webgpu/api/validation/resource_usages/texture/in_pass_encoder.spec.ts src/webgpu/api/validation/resource_usages/texture/in_pass_encoder.spec.ts
src/webgpu/api/validation/resource_usages/texture/in_render_common.spec.ts src/webgpu/api/validation/resource_usages/texture/in_render_common.spec.ts
src/webgpu/api/validation/resource_usages/texture/in_render_misc.spec.ts src/webgpu/api/validation/resource_usages/texture/in_render_misc.spec.ts

View File

@ -68,12 +68,12 @@ if __name__ == '__main__':
txt = f.readlines() txt = f.readlines()
if (txt != ts_sources): if (txt != ts_sources):
raise RuntimeError( raise RuntimeError(
'%s is out of date. Please re-run //third_party/dawn/third_party/webgpu-cts/scripts/gen_ts_dep_lists.py\n' '%s is out of date. Please re-run //third_party/dawn/webgpu-cts/scripts/gen_ts_dep_lists.py\n'
% ts_sources_txt) % ts_sources_txt)
with open(resource_files_txt, 'r') as f: with open(resource_files_txt, 'r') as f:
if (f.readlines() != resource_files): if (f.readlines() != resource_files):
raise RuntimeError( raise RuntimeError(
'%s is out of date. Please re-run //third_party/dawn/third_party/webgpu-cts/scripts/gen_ts_dep_lists.py\n' '%s is out of date. Please re-run //third_party/dawn/webgpu-cts/scripts/gen_ts_dep_lists.py\n'
% resource_files_txt) % resource_files_txt)
else: else:
with open(ts_sources_txt, 'w') as f: with open(ts_sources_txt, 'w') as f: