test262/test/built-ins/Atomics/store/non-shared-views-throws.js

20 lines
668 B
JavaScript
Raw Normal View History

// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2017-07-26 23:49:55 +02:00
esid: sec-atomics.store
description: >
Atomics.store throws when operating on non-sharable integer TypedArrays
includes: [testTypedArray.js]
features: [ArrayBuffer, Atomics, TypedArray]
---*/
const buffer = new ArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 4);
const views = intArrayConstructors.slice();
testWithNonSharableTypedArrayConstructors(function(TA) {
2018-05-18 21:00:10 +02:00
assert.throws(TypeError, function() {
Atomics.store(new TA(buffer), 0, 0);
2020-05-13 22:40:38 +02:00
}, `Atomics.store(new ${TA.name}(buffer), 0, 1) throws TypeError`);
2018-04-19 16:11:50 +02:00
}, views);