Skip to content

Commit 62dd6a2

Browse files
TrottMylesBorins
authored andcommitted
test: increase enoughTestMem to 1.75 Gb
PR-URL: #16374 Fixes: #16354 Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 9c229b4 commit 62dd6a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/common/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ exports.isFreeBSD = process.platform === 'freebsd';
3232
exports.isLinux = process.platform === 'linux';
3333
exports.isOSX = process.platform === 'darwin';
3434

35-
exports.enoughTestMem = os.totalmem() > 0x40000000; /* 1 Gb */
35+
exports.enoughTestMem = os.totalmem() > 0x70000000; /* 1.75 Gb */
3636

3737
const cpus = os.cpus();
3838
exports.enoughTestCpu = Array.isArray(cpus) &&

0 commit comments

Comments
 (0)