Skip to content

Commit 9ac029e

Browse files
committed
test: bump memory limit for abort fatal error
PR-URL: #44984 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com>
1 parent 3f20e5b commit 9ac029e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/abort/test-abort-fatal-error.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const assert = require('assert');
2828
const exec = require('child_process').exec;
2929

3030
let cmdline = `ulimit -c 0; ${process.execPath}`;
31-
cmdline += ' --max-old-space-size=4 --max-semi-space-size=1';
31+
cmdline += ' --max-old-space-size=16 --max-semi-space-size=4';
3232
cmdline += ' -e "a = []; for (i = 0; i < 1e9; i++) { a.push({}) }"';
3333

3434
exec(cmdline, function(err, stdout, stderr) {

0 commit comments

Comments
 (0)