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:
parent
37200bd0be
commit
1d1fcdd005
|
@ -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/render_pass/resolve.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_render_common.spec.ts
|
||||
src/webgpu/api/validation/resource_usages/texture/in_render_misc.spec.ts
|
||||
|
|
|
@ -68,12 +68,12 @@ if __name__ == '__main__':
|
|||
txt = f.readlines()
|
||||
if (txt != ts_sources):
|
||||
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)
|
||||
with open(resource_files_txt, 'r') as f:
|
||||
if (f.readlines() != resource_files):
|
||||
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)
|
||||
else:
|
||||
with open(ts_sources_txt, 'w') as f:
|
||||
|
|
Loading…
Reference in New Issue