���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/sequential/ |
'use strict'; const common = require('../common'); common.skipIfInspectorDisabled(); // A test to ensure that cluster properly interoperates with the // --inspect-brk option. const assert = require('assert'); const cluster = require('cluster'); const debuggerPort = common.PORT; if (cluster.isMaster) { function test(execArgv) { cluster.setupMaster({ execArgv: execArgv, stdio: ['pipe', 'pipe', 'pipe', 'ipc', 'pipe'] }); const worker = cluster.fork(); // Debugger listening on port [port]. worker.process.stderr.once('data', common.mustCall(function() { worker.process.kill('SIGTERM'); })); worker.process.on('exit', common.mustCall(function(code, signal) { assert.strictEqual(signal, 'SIGTERM'); })); } test(['--inspect-brk']); test([`--inspect-brk=${debuggerPort}`]); } else { // Cluster worker is at a breakpoint, should not reach here. assert.fail('Test failed: cluster worker should be at a breakpoint.'); }