mirror of
https://github.com/servo/servo.git
synced 2025-07-22 14:53:49 +01:00
chore: Update wgpu to v25 (#36486)
Updates wgpu to v25 and remove some verbose logging from CTS (that also causes OOM). Testing: WebGPU CTS --------- Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
This commit is contained in:
parent
bd9242acfa
commit
05b5268061
19 changed files with 3833 additions and 2260 deletions
|
@ -673,6 +673,12 @@ class MachCommands(CommandBase):
|
|||
# Write the file out again
|
||||
with open(cts_html, 'w') as file:
|
||||
file.write(filedata)
|
||||
logger = path.join(clone_dir, "out-wpt", "common/internal/logging/test_case_recorder.js")
|
||||
with open(logger, 'r') as file:
|
||||
filedata = file.read()
|
||||
filedata.replace("info(ex) {", "info(ex) {return;")
|
||||
with open(logger, 'w') as file:
|
||||
file.write(filedata)
|
||||
# copy
|
||||
delete(path.join(tdir, "webgpu"))
|
||||
shutil.copytree(path.join(clone_dir, "out-wpt"), path.join(tdir, "webgpu"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue