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

23 lines
589 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);
2018-05-18 21:00:10 +02:00
assert.throws(TypeError, function() {
Atomics.load(view, 0);
}, 'Atomics.load(view, 0) throws TypeError');
2018-04-19 16:11:50 +02:00
}, views);