mirror of https://github.com/tc39/test262.git
24 lines
675 B
JavaScript
24 lines
675 B
JavaScript
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-atomics.wake
|
|
description: >
|
|
Test Atomics.wake on non-shared integer TypedArrays
|
|
includes: [testTypedArray.js]
|
|
features: [ArrayBuffer, Atomics, BigInt, TypedArray]
|
|
---*/
|
|
|
|
var buffer = new ArrayBuffer(16);
|
|
var views = intArrayConstructors.slice();
|
|
|
|
if (typeof BigInt !== "undefined") {
|
|
views.push(BigInt64Array);
|
|
views.push(BigUint64Array);
|
|
}
|
|
|
|
testWithTypedArrayConstructors(function(TA) {
|
|
// Should fail even if waking zero waiters
|
|
assert.throws(TypeError, (() => Atomics.wake(new TA(buffer), 0, 0)));
|
|
}, views);
|