test262/test/built-ins/Atomics/load/nonshared-int-views.js

21 lines
533 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.load
description: >
Test Atomics.load on non-shared integer TypedArrays
includes: [testTypedArray.js]
features: [ArrayBuffer, Atomics, TypedArray]
---*/
var ab = new ArrayBuffer(16);
2018-04-19 16:11:50 +02:00
var views = intArrayConstructors.slice();
2018-04-19 16:11:50 +02:00
testWithTypedArrayConstructors(function(TA) {
var view = new TA(ab);
assert.throws(TypeError, (() => Atomics.load(view, 0)));
2018-04-19 16:11:50 +02:00
}, views);