mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 13:22:55 -05:00
fb24fd37c9
This PR enables node compat test cases found passing by using the tool added in #27122 The percentage of passing test case increases from 16.16% to 30.43% by this change.
49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 20.11.1
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
|
|
|
'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'));
|
|
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`);
|
|
}
|