Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Atomics / load / bad-range.js
blobf952458687676b31cfeae9d7efb75089ca05474b
1 // |reftest| skip-if(!this.hasOwnProperty('Atomics')||!this.hasOwnProperty('SharedArrayBuffer')||(this.hasOwnProperty('getBuildConfiguration')&&getBuildConfiguration('arm64-simulator'))) -- Atomics,SharedArrayBuffer is not enabled unconditionally, ARM64 Simulator cannot emulate atomics
2 // Copyright (C) 2017 Mozilla Corporation.  All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 /*---
6 esid: sec-atomics.load
7 description: >
8   Test range checking of Atomics.load on arrays that allow atomic operations
9 includes: [testAtomics.js, testTypedArray.js]
10 features: [ArrayBuffer, Atomics, DataView, SharedArrayBuffer, Symbol, TypedArray]
11 ---*/
13 var buffer = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 2);
14 var views = nonClampedIntArrayConstructors.slice();
16 testWithTypedArrayConstructors(function(TA) {
17   let view = new TA(buffer);
18   testWithAtomicsOutOfBoundsIndices(function(IdxGen) {
19     assert.throws(RangeError, function() {
20       Atomics.load(view, IdxGen(view));
21     });
22   });
23 }, views);
25 reportCompare(0, 0);