mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 17:01:08 +00:00

Enable running tests inside workers by passing `--worker` to `tools/test.py`. A number of tests are marked as skipped, or have been slightly altered to fit the different environment. PR-URL: https://github.com/nodejs/node/pull/20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
37 lines
873 B
JavaScript
37 lines
873 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
function test(arrayBuffer, offset, length) {
|
|
const uint8Array = new Uint8Array(arrayBuffer, offset, length);
|
|
for (let i = 0; i < length; i += 1) {
|
|
uint8Array[i] = 1;
|
|
}
|
|
|
|
const buffer = Buffer.from(arrayBuffer, offset, length);
|
|
for (let i = 0; i < length; i += 1) {
|
|
assert.strictEqual(buffer[i], 1);
|
|
}
|
|
}
|
|
|
|
const acceptableOOMErrors = [
|
|
'Array buffer allocation failed',
|
|
'Invalid array buffer length'
|
|
];
|
|
|
|
const length = 1000;
|
|
const offset = 4294967296; /* 1 << 32 */
|
|
const size = offset + length;
|
|
let arrayBuffer;
|
|
|
|
try {
|
|
arrayBuffer = new ArrayBuffer(size);
|
|
} catch (e) {
|
|
if (e instanceof RangeError && acceptableOOMErrors.includes(e.message))
|
|
common.skip(`Unable to allocate ${size} bytes for ArrayBuffer`);
|
|
throw e;
|
|
}
|
|
|
|
test(arrayBuffer, offset, length);
|