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.xor
|
|
|
|
description: >
|
|
|
|
Test Atomics.xor on non-shared integer TypedArrays
|
|
|
|
includes: [testBigIntTypedArray.js]
|
|
|
|
features: [ArrayBuffer, arrow-function, Atomics, BigInt, TypedArray]
|
|
|
|
---*/
|
|
|
|
|
2018-06-26 21:01:53 +02:00
|
|
|
var buffer = new ArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 4);
|
2018-04-25 23:29:53 +02:00
|
|
|
|
|
|
|
testWithBigIntTypedArrayConstructors(function(TA) {
|
2018-05-18 21:00:10 +02:00
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
Atomics.xor(new TA(buffer), 0, 0);
|
2018-06-27 18:58:02 +02:00
|
|
|
}, '`Atomics.xor(new TA(buffer), 0, 0)` throws TypeError');
|
2018-04-25 23:29:53 +02:00
|
|
|
});
|