mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 05:00:21 +00:00

Execute many module loads in worker in a loop while exiting from the main thread at arbitrary execution points, and make sure that the workers quiesce without crashing. `worker_threads` are not necessarily the subject of testing, those are used for easy simulation of multi-thread scenarios. Refs: https://github.com/nodejs/node/issues/25007 PR-URL: https://github.com/nodejs/node/pull/25083 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
25 lines
749 B
JavaScript
25 lines
749 B
JavaScript
'use strict';
|
|
require('../common');
|
|
|
|
// Harden the thread interactions on the exit path.
|
|
// Ensure workers are able to bail out safe at
|
|
// arbitrary execution points. By using a number of
|
|
// internal modules as load candidates, the expectation
|
|
// is that those will be at various control flow points
|
|
// preferrably in the C++ land.
|
|
|
|
const { Worker } = require('worker_threads');
|
|
for (let i = 0; i < 10; i++) {
|
|
new Worker("const modules = ['fs', 'assert', 'async_hooks'," +
|
|
"'buffer', 'child_process', 'net', 'http', 'https', 'os'," +
|
|
"'path', 'v8', 'vm'];" +
|
|
'modules.forEach((module) => {' +
|
|
'const m = require(module);' +
|
|
'});', { eval: true });
|
|
}
|
|
|
|
// Allow workers to go live.
|
|
setTimeout(() => {
|
|
process.exit(0);
|
|
}, 200);
|