Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Atomics / exchange / bigint / bad-range.js
blob9a54b7757761183cf44a0bd72bc3ad6cad14c632
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) 2018 Rick Waldron. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-atomics.exchange
6 description: >
7   Test range checking of Atomics.exchange on arrays that allow atomic operations
8 includes: [testAtomics.js, testBigIntTypedArray.js]
9 features: [ArrayBuffer, Atomics, BigInt, DataView, SharedArrayBuffer, Symbol, TypedArray]
10 ---*/
11 var buffer = new SharedArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 2);
13 testWithBigIntTypedArrayConstructors(function(TA) {
14   let view = new TA(buffer);
16   testWithAtomicsOutOfBoundsIndices(function(IdxGen) {
17     assert.throws(RangeError, function() {
18       Atomics.exchange(view, IdxGen(view), 10n, 0n);
19     });
20   });
21 });
23 reportCompare(0, 0);