mirror of
https://github.com/nodejs/node.git
synced 2025-12-27 23:41:14 +00:00
Some checks failed
Coverage Linux (without intl) / coverage-linux-without-intl (push) Waiting to run
Coverage Linux / coverage-linux (push) Waiting to run
Coverage Windows / coverage-windows (push) Waiting to run
Test and upload documentation to artifacts / build-docs (push) Waiting to run
Linters / lint-addon-docs (push) Waiting to run
Linters / lint-cpp (push) Waiting to run
Linters / format-cpp (push) Waiting to run
Linters / lint-js-and-md (push) Waiting to run
Linters / lint-py (push) Waiting to run
Linters / lint-yaml (push) Waiting to run
Linters / lint-sh (push) Waiting to run
Linters / lint-codeowners (push) Waiting to run
Linters / lint-pr-url (push) Waiting to run
Linters / lint-readme (push) Waiting to run
Notify on Push / Notify on Force Push on `main` (push) Waiting to run
Notify on Push / Notify on Push on `main` that lacks metadata (push) Waiting to run
Scorecard supply-chain security / Scorecard analysis (push) Waiting to run
Find inactive TSC voting members / find (push) Has been cancelled
PR-URL: https://github.com/nodejs/node/pull/56968 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
104 lines
2.9 KiB
JavaScript
104 lines
2.9 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (common.isPi()) {
|
|
common.skip('Too slow for Raspberry Pi devices');
|
|
}
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
const fixtures = require('../common/fixtures');
|
|
const fs = require('fs');
|
|
const env = {
|
|
...process.env,
|
|
NODE_DEBUG_NATIVE: 'diagnostics',
|
|
};
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const child = spawnSync(process.execPath, [
|
|
'--heapsnapshot-near-heap-limit=-15',
|
|
'--max-old-space-size=50',
|
|
fixtures.path('workload', 'grow.js'),
|
|
], {
|
|
cwd: tmpdir.path,
|
|
env,
|
|
});
|
|
assert.strictEqual(child.status, 9);
|
|
}
|
|
|
|
{
|
|
console.log('\nTesting limit = 0');
|
|
tmpdir.refresh();
|
|
const child = spawnSync(process.execPath, [
|
|
'--trace-gc',
|
|
'--heapsnapshot-near-heap-limit=0',
|
|
'--max-old-space-size=50',
|
|
fixtures.path('workload', 'grow.js'),
|
|
], {
|
|
cwd: tmpdir.path,
|
|
env,
|
|
});
|
|
console.log(child.stdout.toString());
|
|
console.log(child.stderr.toString());
|
|
assert(common.nodeProcessAborted(child.status, child.signal),
|
|
'process should have aborted, but did not');
|
|
const list = fs.readdirSync(tmpdir.path)
|
|
.filter((file) => file.endsWith('.heapsnapshot'));
|
|
assert.strictEqual(list.length, 0);
|
|
}
|
|
|
|
{
|
|
console.log('\nTesting limit = 1');
|
|
tmpdir.refresh();
|
|
const child = spawnSync(process.execPath, [
|
|
'--trace-gc',
|
|
'--heapsnapshot-near-heap-limit=1',
|
|
'--max-old-space-size=50',
|
|
fixtures.path('workload', 'grow.js'),
|
|
], {
|
|
cwd: tmpdir.path,
|
|
env,
|
|
});
|
|
console.log(child.stdout.toString());
|
|
const stderr = child.stderr.toString();
|
|
console.log(stderr);
|
|
assert(common.nodeProcessAborted(child.status, child.signal),
|
|
'process should have aborted, but did not');
|
|
const list = fs.readdirSync(tmpdir.path)
|
|
.filter((file) => file.endsWith('.heapsnapshot'));
|
|
const risky = [...stderr.matchAll(
|
|
/Not generating snapshots because it's too risky/g)].length;
|
|
assert(list.length + risky > 0 && list.length <= 1,
|
|
`Generated ${list.length} snapshots ` +
|
|
`and ${risky} was too risky`);
|
|
}
|
|
|
|
{
|
|
console.log('\nTesting limit = 3');
|
|
tmpdir.refresh();
|
|
const child = spawnSync(process.execPath, [
|
|
'--trace-gc',
|
|
'--heapsnapshot-near-heap-limit=3',
|
|
'--max-old-space-size=50',
|
|
fixtures.path('workload', 'grow.js'),
|
|
], {
|
|
cwd: tmpdir.path,
|
|
env,
|
|
});
|
|
console.log(child.stdout.toString());
|
|
const stderr = child.stderr.toString();
|
|
console.log(stderr);
|
|
assert(common.nodeProcessAborted(child.status, child.signal),
|
|
'process should have aborted, but did not');
|
|
const list = fs.readdirSync(tmpdir.path)
|
|
.filter((file) => file.endsWith('.heapsnapshot'));
|
|
const risky = [...stderr.matchAll(
|
|
/Not generating snapshots because it's too risky/g)].length;
|
|
assert(list.length + risky > 0 && list.length <= 3,
|
|
`Generated ${list.length} snapshots ` +
|
|
`and ${risky} was too risky`);
|
|
}
|