mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
7a0e462f9f
Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
31 lines
725 B
JavaScript
31 lines
725 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (common.isWindows) {
|
|
common.skip('no RLIMIT_NOFILE on Windows');
|
|
return;
|
|
}
|
|
|
|
const exec = require('child_process').exec;
|
|
|
|
let cmdline = 'ulimit -c 0; ' + process.execPath;
|
|
cmdline += ' --max-old-space-size=4 --max-semi-space-size=1';
|
|
cmdline += ' -e "a = []; for (i = 0; i < 1e9; i++) { a.push({}) }"';
|
|
|
|
exec(cmdline, function(err, stdout, stderr) {
|
|
if (!err) {
|
|
console.log(stdout);
|
|
console.log(stderr);
|
|
assert(false, 'this test should fail');
|
|
return;
|
|
}
|
|
|
|
if (err.code !== 134 && err.signal !== 'SIGABRT') {
|
|
console.log(stdout);
|
|
console.log(stderr);
|
|
console.log(err);
|
|
assert(false, err);
|
|
}
|
|
});
|