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 cluster.settings.serialization = 'advanced'; 81cb0ef41Sopenharmony_ci const worker = cluster.fork(); 91cb0ef41Sopenharmony_ci const circular = {}; 101cb0ef41Sopenharmony_ci circular.circular = circular; 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_ci worker.on('online', common.mustCall(() => { 131cb0ef41Sopenharmony_ci worker.send(circular); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ci worker.on('message', common.mustCall((msg) => { 161cb0ef41Sopenharmony_ci assert.deepStrictEqual(msg, circular); 171cb0ef41Sopenharmony_ci worker.kill(); 181cb0ef41Sopenharmony_ci })); 191cb0ef41Sopenharmony_ci })); 201cb0ef41Sopenharmony_ci} else { 211cb0ef41Sopenharmony_ci process.on('message', (msg) => process.send(msg)); 221cb0ef41Sopenharmony_ci} 23