11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst cluster = require('cluster'); 41cb0ef41Sopenharmony_ciconst assert = require('assert'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciif (cluster.isPrimary) { 71cb0ef41Sopenharmony_ci const worker = cluster.fork(); 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ci worker.on('online', common.mustCall(() => { 101cb0ef41Sopenharmony_ci // Use worker.process.kill() instead of worker.kill() because the latter 111cb0ef41Sopenharmony_ci // waits for a graceful disconnect, which will never happen. 121cb0ef41Sopenharmony_ci worker.process.kill(); 131cb0ef41Sopenharmony_ci })); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ci worker.on('exit', common.mustCall((code, signal) => { 161cb0ef41Sopenharmony_ci assert.strictEqual(code, null); 171cb0ef41Sopenharmony_ci assert.strictEqual(signal, 'SIGTERM'); 181cb0ef41Sopenharmony_ci })); 191cb0ef41Sopenharmony_ci} else { 201cb0ef41Sopenharmony_ci while (true); 211cb0ef41Sopenharmony_ci} 22