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

22 lines
590 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: >
Test Atomics.store on shared non-integer TypedArrays
includes: [testTypedArray.js]
2018-04-19 16:11:50 +02:00
features: [Atomics, SharedArrayBuffer, TypedArray]
---*/
2018-04-19 16:11:50 +02:00
var buffer = new SharedArrayBuffer(1024);
testWithTypedArrayConstructors(function(TA) {
2018-05-18 21:00:10 +02:00
assert.throws(TypeError, function() {
Atomics.store(new TA(buffer), 0, 0);
}, '`Atomics.store(new TA(buffer), 0, 0)` throws TypeError');
2018-04-19 16:11:50 +02:00
}, floatArrayConstructors);