2017-02-07 17:17:31 +01:00
|
|
|
// 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
|
2017-02-07 17:17:31 +01:00
|
|
|
description: >
|
2020-05-06 21:32:28 +02:00
|
|
|
Atomics.store throws when operating on non-sharable integer TypedArrays
|
2017-02-07 17:17:31 +01:00
|
|
|
includes: [testTypedArray.js]
|
2018-04-25 17:33:53 +02:00
|
|
|
features: [ArrayBuffer, Atomics, TypedArray]
|
2017-02-07 17:17:31 +01:00
|
|
|
---*/
|
|
|
|
|
2020-05-06 21:32:28 +02:00
|
|
|
const buffer = new ArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 4);
|
2018-06-27 18:58:02 +02:00
|
|
|
const views = intArrayConstructors.slice();
|
2017-02-07 17:17:31 +01:00
|
|
|
|
2020-05-06 21:32:28 +02:00
|
|
|
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);
|