11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst cluster = require('cluster'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciif (cluster.isPrimary) { 71cb0ef41Sopenharmony_ci const worker = cluster.fork(); 81cb0ef41Sopenharmony_ci worker.on('exit', common.mustCall((code, signal) => { 91cb0ef41Sopenharmony_ci assert.strictEqual( 101cb0ef41Sopenharmony_ci code, 111cb0ef41Sopenharmony_ci 0, 121cb0ef41Sopenharmony_ci `Worker did not exit normally with code: ${code}` 131cb0ef41Sopenharmony_ci ); 141cb0ef41Sopenharmony_ci assert.strictEqual( 151cb0ef41Sopenharmony_ci signal, 161cb0ef41Sopenharmony_ci null, 171cb0ef41Sopenharmony_ci `Worker did not exit normally with signal: ${signal}` 181cb0ef41Sopenharmony_ci ); 191cb0ef41Sopenharmony_ci })); 201cb0ef41Sopenharmony_ci} else { 211cb0ef41Sopenharmony_ci const net = require('net'); 221cb0ef41Sopenharmony_ci const server = net.createServer(); 231cb0ef41Sopenharmony_ci server.listen(0, common.mustCall(() => { 241cb0ef41Sopenharmony_ci process.disconnect(); 251cb0ef41Sopenharmony_ci })); 261cb0ef41Sopenharmony_ci} 27