9021235d3b
This reenables a test which is passing, independent of missing accounting for shared memory. This is because we repeatedly trigger a GC explicitly in all workers. R=dinfuehr@chromium.org Bug: v8:12278 Change-Id: I73d1513d809787284af0be4956018806719acd50 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3201995 Reviewed-by: Dominik Inführ <dinfuehr@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/main@{#77219}
32 lines
1.0 KiB
JavaScript
32 lines
1.0 KiB
JavaScript
// Copyright 2019 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --experimental-wasm-threads --expose-gc
|
|
|
|
d8.file.execute("test/mjsunit/worker-ping-test.js");
|
|
|
|
let config = {
|
|
numThings: 4, // size of circular buffer
|
|
numWorkers: 4, // number of workers
|
|
numMessages: 500, // number of messages sent to each worker
|
|
allocInterval: 11, // interval for allocating new things per worker
|
|
traceScript: false, // print the script
|
|
traceAlloc: true, // print each allocation attempt
|
|
traceIteration: 10, // print diagnostics every so many iterations
|
|
abortOnFail: true, // kill worker if allocation fails
|
|
|
|
AllocThing: function AllocThing(id) {
|
|
let pages = 1, max = 1;
|
|
return new WebAssembly.Memory({initial : pages, maximum : max, shared : true});
|
|
},
|
|
BeforeSend: function BeforeSend(msg) {
|
|
gc();
|
|
},
|
|
BeforeReceive: function BeforeReceive(msg) {
|
|
gc();
|
|
}
|
|
}
|
|
|
|
RunWorkerPingTest(config);
|