test: define SharedArrayBuffer as a known global

This commit defines SharedArrayBuffer as a global for all tests,
rather than adding comments to individual tests.

PR-URL: https://github.com/nodejs/node/pull/20849
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
This commit is contained in:
cjihrig 2018-05-20 10:08:45 -04:00 committed by Anna Henningsen
parent 32873c5f9b
commit 680a171efa
No known key found for this signature in database
GPG Key ID: 9C63F3A6CD2AD8F9
4 changed files with 1 additions and 4 deletions

View File

@ -51,3 +51,4 @@ globals:
WebAssembly: false
BigInt64Array: false
BigUint64Array: false
SharedArrayBuffer: false

View File

@ -1,4 +1,3 @@
/* global SharedArrayBuffer */
'use strict';
require('../common');

View File

@ -2,7 +2,5 @@
require('../common');
const assert = require('assert');
const util = require('util');
/* global SharedArrayBuffer */
const sab = new SharedArrayBuffer(4);
assert.strictEqual(util.format(sab), 'SharedArrayBuffer { byteLength: 4 }');

View File

@ -1,5 +1,4 @@
// Flags: --harmony-bigint --experimental-vm-modules
/* global SharedArrayBuffer */
'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');