Enable mjsunit/wasm/shared-memory-worker-gc

This test had been skipped since it was added in
4a416dbbe1.

Bug: v8:9380
Change-Id: I700f83fa4242baf44dd260fbc74520abf05101dd
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3670052
Commit-Queue: Adam Klein <adamk@chromium.org>
Reviewed-by: Deepti Gandluri <gdeepti@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80766}
This commit is contained in:
Adam Klein 2022-05-26 14:22:37 -07:00 committed by V8 LUCI CQ
parent e3aee111a9
commit 2c2280554e
2 changed files with 1 additions and 4 deletions

View File

@ -90,9 +90,6 @@
# BUG(v8:8169)
'external-backing-store-gc': [SKIP],
# Issue 9380: Memory leaks of shared WebAssembly.Memory objects
'wasm/shared-memory-worker-gc': [SKIP],
# BUG(v8:10197)
'regress/regress-748069': [SKIP],

View File

@ -19,7 +19,7 @@ function AllocMemory(pages = 1, max = pages) {
}
}
let worker = new Worker(workerCode);
let worker = new Worker(workerCode, {type: 'function'});
let time = performance.now();