mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 17:03:34 +00:00

Fixes: https://github.com/nodejs/node/issues/39555 PR-URL: https://github.com/nodejs/node/pull/39638 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
if (!common.isMainThread) {
|
|
common.skip('process.chdir() is not available in workers');
|
|
}
|
|
|
|
const fixtures = require('../common/fixtures');
|
|
const startCLI = require('../common/debugger');
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
tmpdir.refresh();
|
|
process.chdir(tmpdir.path);
|
|
|
|
const { readFileSync } = require('fs');
|
|
|
|
const filename = 'node.heapsnapshot';
|
|
|
|
// Heap profiler take snapshot.
|
|
{
|
|
const cli = startCLI([fixtures.path('debugger/empty.js')]);
|
|
|
|
function onFatal(error) {
|
|
cli.quit();
|
|
throw error;
|
|
}
|
|
|
|
// Check that the snapshot is valid JSON.
|
|
return cli.waitForInitialBreak()
|
|
.then(() => cli.waitForPrompt())
|
|
.then(() => cli.command('takeHeapSnapshot()'))
|
|
.then(() => JSON.parse(readFileSync(filename, 'utf8')))
|
|
// Check that two simultaneous snapshots don't step all over each other.
|
|
// Refs: https://github.com/nodejs/node/issues/39555
|
|
.then(() => cli.command('takeHeapSnapshot(); takeHeapSnapshot()'))
|
|
.then(() => JSON.parse(readFileSync(filename, 'utf8')))
|
|
.then(() => cli.quit())
|
|
.then(null, onFatal);
|
|
}
|