mirror of https://github.com/nodejs/node.git
9 lines
428 B
JavaScript
9 lines
428 B
JavaScript
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
|
||
|
// The tests below should throw an error, not abort the process...
|
||
|
assert.throws(function() { new Buffer(0x3fffffff + 1) }, RangeError);
|
||
|
assert.throws(function() { new Int8Array(0x3fffffff + 1) }, RangeError);
|
||
|
assert.throws(function() { new ArrayBuffer(0x3fffffff + 1) }, RangeError);
|
||
|
assert.throws(function() { new Float64Array(0x7ffffff + 1) }, RangeError);
|