Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-heapsnapshot-near-heap-limit-big.js « pummel « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f70d562c1d1ee404c645662d3f91ba6a63ac7466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'use strict';

const common = require('../common');
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'
};

if (!common.enoughTestMem)
  common.skip('Insufficient memory for snapshot test');

{
  console.log('\nTesting limit = 3');
  tmpdir.refresh();
  const child = spawnSync(process.execPath, [
    '--heapsnapshot-near-heap-limit=3',
    '--max-old-space-size=512',
    fixtures.path('workload', 'grow.js')
  ], {
    cwd: tmpdir.path,
    env: {
      ...env,
      TEST_CHUNK: 2000,
    }
  });
  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'));
  if (list.length === 0) {
    assert(stderr.includes(
      'Not generating snapshots because it\'s too risky'));
  } else {
    assert(list.length > 0 && list.length <= 3);
  }
}