mirror of https://github.com/tc39/test262.git
18 lines
512 B
JavaScript
18 lines
512 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.add
|
|
description: >
|
|
Test Atomics.add on non-shared integer TypedArrays
|
|
includes: [testTypedArray.js]
|
|
features: [ArrayBuffer, Atomics, TypedArray]
|
|
---*/
|
|
|
|
var ab = new ArrayBuffer(16);
|
|
var views = intArrayConstructors.slice();
|
|
|
|
testWithTypedArrayConstructors(function(TA) {
|
|
assert.throws(TypeError, (() => Atomics.add(new TA(ab), 0, 0)));
|
|
}, views);
|