���� 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'); if (common.isWindows) common.skip('test not supported on Windows'); const assert = require('assert'); if (process.argv[2] === 'child') { const fs = require('fs'); assert.strictEqual(process.listenerCount('SIGUSR2'), 1); process.kill(process.pid, 'SIGUSR2'); process.kill(process.pid, 'SIGUSR2'); // Asynchronously wait for the snapshot. Use an async loop to be a bit more // robust in case platform or machine differences throw off the timing. (function validate() { const files = fs.readdirSync(process.cwd()); if (files.length === 0) return setImmediate(validate); assert.strictEqual(files.length, 2); for (let i = 0; i < files.length; i++) { assert(/^Heap\..+\.heapsnapshot$/.test(files[i])); JSON.parse(fs.readFileSync(files[i])); } })(); } else { const { spawnSync } = require('child_process'); const tmpdir = require('../common/tmpdir'); tmpdir.refresh(); const args = ['--heapsnapshot-signal', 'SIGUSR2', __filename, 'child']; const child = spawnSync(process.execPath, args, { cwd: tmpdir.path }); assert.strictEqual(child.status, 0); assert.strictEqual(child.signal, null); }