2017-02-07 17:17:31 +01:00
|
|
|
// 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.exchange
|
2017-02-07 17:17:31 +01:00
|
|
|
description: >
|
2020-06-25 14:41:23 +02:00
|
|
|
Atomics.exchange throws when operating on non-sharable integer TypedArrays
|
2017-02-07 17:17:31 +01:00
|
|
|
includes: [testTypedArray.js]
|
2018-04-25 17:33:53 +02:00
|
|
|
features: [ArrayBuffer, Atomics, TypedArray]
|
2017-02-07 17:17:31 +01:00
|
|
|
---*/
|
|
|
|
|
2020-06-25 14:41:23 +02:00
|
|
|
testWithNonAtomicsFriendlyTypedArrayConstructors(TA => {
|
|
|
|
const buffer = new ArrayBuffer(TA.BYTES_PER_ELEMENT * 4);
|
|
|
|
const view = new TA(buffer);
|
2017-02-07 17:17:31 +01:00
|
|
|
|
2018-05-18 21:00:10 +02:00
|
|
|
assert.throws(TypeError, function() {
|
2020-06-25 14:41:23 +02:00
|
|
|
Atomics.exchange(view, 0, 0);
|
|
|
|
}, `Atomics.exchange(new ${TA.name}(buffer), 0, 0) throws TypeError`);
|
|
|
|
});
|