mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
db9e122182
The error message returned on ArrayBuffer allocation failure is now different as per https://codereview.chromium.org/1393263003. Ref: https://github.com/nodejs/node/pull/4399 PR-URL: https://github.com/nodejs/node/pull/4785 Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
34 lines
961 B
JavaScript
34 lines
961 B
JavaScript
'use strict';
|
|
// Flags: --expose-gc
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const skipMessage =
|
|
'1..0 # Skipped: intensive toString tests due to memory confinements';
|
|
if (!common.enoughTestMem) {
|
|
console.log(skipMessage);
|
|
return;
|
|
}
|
|
assert(typeof gc === 'function', 'Run this test with --expose-gc');
|
|
|
|
// v8 fails silently if string length > v8::String::kMaxLength
|
|
// v8::String::kMaxLength defined in v8.h
|
|
const kStringMaxLength = process.binding('buffer').kStringMaxLength;
|
|
|
|
try {
|
|
var buf = new Buffer(kStringMaxLength + 1);
|
|
// Try to allocate memory first then force gc so future allocations succeed.
|
|
new Buffer(2 * kStringMaxLength);
|
|
gc();
|
|
} catch (e) {
|
|
// If the exception is not due to memory confinement then rethrow it.
|
|
if (e.message !== 'Array buffer allocation failed') throw (e);
|
|
console.log(skipMessage);
|
|
return;
|
|
}
|
|
|
|
assert.throws(function() {
|
|
buf.toString('hex');
|
|
}, /"toString\(\)" failed/);
|