2018-04-25 23:29:53 +02:00
|
|
|
// Copyright (C) 2018 Rick Waldron. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-atomics.compareexchange
|
|
|
|
description: >
|
|
|
|
Test Atomics.compareExchange on non-shared integer TypedArrays
|
|
|
|
includes: [testBigIntTypedArray.js]
|
|
|
|
features: [ArrayBuffer, arrow-function, Atomics, BigInt, TypedArray]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
var buffer = new ArrayBuffer(16);
|
|
|
|
|
|
|
|
testWithBigIntTypedArrayConstructors(function(TA) {
|
2018-05-17 20:06:22 +02:00
|
|
|
assert.throws(
|
|
|
|
TypeError,
|
|
|
|
() => Atomics.compareExchange(new TA(buffer), 0, 0, 0),
|
|
|
|
'Atomics.compareExchange(new TA(buffer), 0, 0, 0) throws TypeError'
|
|
|
|
);
|
2018-04-25 23:29:53 +02:00
|
|
|
});
|