11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst { getHeapSnapshot } = require('v8'); 51cb0ef41Sopenharmony_ciconst { isMainThread, Worker } = require('worker_threads'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ci// Checks taking heap snapshot at the exit event listener of Worker doesn't 81cb0ef41Sopenharmony_ci// crash the process. 91cb0ef41Sopenharmony_ci// Regression for https://github.com/nodejs/node/issues/43122. 101cb0ef41Sopenharmony_ciif (isMainThread) { 111cb0ef41Sopenharmony_ci const worker = new Worker(__filename); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ci worker.once('exit', common.mustCall((code) => { 141cb0ef41Sopenharmony_ci assert.strictEqual(code, 0); 151cb0ef41Sopenharmony_ci getHeapSnapshot().pipe(process.stdout); 161cb0ef41Sopenharmony_ci })); 171cb0ef41Sopenharmony_ci} 18