mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

Use the error message as another condition to skip the test when the buffer allocation fails. Refs:795dd8eb79
Refs:e9c6004a2d
PR-URL: https://github.com/nodejs/node/pull/58738 Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
28 lines
604 B
JavaScript
28 lines
604 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// Buffer with size > INT32_MAX
|
|
common.skipIf32Bits();
|
|
|
|
const assert = require('node:assert');
|
|
const size = 2 ** 31;
|
|
|
|
let largeBuffer;
|
|
|
|
// Test Buffer.allocUnsafe with size larger than integer range
|
|
try {
|
|
largeBuffer = Buffer.allocUnsafeSlow(size);
|
|
} catch (e) {
|
|
if (
|
|
e.code === 'ERR_MEMORY_ALLOCATION_FAILED' ||
|
|
/Array buffer allocation failed/.test(e.message)
|
|
) {
|
|
common.skip('insufficient space for Buffer.allocUnsafeSlow');
|
|
}
|
|
|
|
throw e;
|
|
}
|
|
|
|
assert.throws(() => largeBuffer.toString('utf8'), {
|
|
code: 'ERR_STRING_TOO_LONG',
|
|
});
|