mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 17:57:53 +00:00

It makes it easier to locate all tests related to the worker subsystem. PR-URL: https://github.com/nodejs/node/pull/21512 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
29 lines
861 B
JavaScript
29 lines
861 B
JavaScript
// Flags: --expose-gc --experimental-worker
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { Worker } = require('worker_threads');
|
|
|
|
{
|
|
const sharedArrayBuffer = new SharedArrayBuffer(12);
|
|
const local = Buffer.from(sharedArrayBuffer);
|
|
|
|
const w = new Worker(`
|
|
const { parentPort } = require('worker_threads');
|
|
parentPort.on('message', ({ sharedArrayBuffer }) => {
|
|
const local = Buffer.from(sharedArrayBuffer);
|
|
local.write('world!', 6);
|
|
parentPort.postMessage('written!');
|
|
});
|
|
`, { eval: true });
|
|
w.on('message', common.mustCall(() => {
|
|
assert.strictEqual(local.toString(), 'Hello world!');
|
|
global.gc();
|
|
w.terminate();
|
|
}));
|
|
w.postMessage({ sharedArrayBuffer });
|
|
// This would be a race condition if the memory regions were overlapping
|
|
local.write('Hello ');
|
|
}
|