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.sub
|
2017-02-07 17:17:31 +01:00
|
|
|
description: >
|
|
|
|
Test Atomics.sub on non-shared integer TypedArrays
|
|
|
|
includes: [testTypedArray.js]
|
2018-04-25 17:33:53 +02:00
|
|
|
features: [ArrayBuffer, Atomics, TypedArray]
|
2017-02-07 17:17:31 +01:00
|
|
|
---*/
|
|
|
|
|
2018-06-27 18:58:02 +02:00
|
|
|
const buffer = new ArrayBuffer(16);
|
|
|
|
const views = intArrayConstructors.slice();
|
2017-02-07 17:17:31 +01:00
|
|
|
|
2018-04-19 16:11:50 +02:00
|
|
|
testWithTypedArrayConstructors(function(TA) {
|
2018-05-18 21:00:10 +02:00
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
Atomics.sub(new TA(buffer), 0, 0);
|
2018-06-27 18:58:02 +02:00
|
|
|
}, '`Atomics.sub(new TA(buffer), 0, 0)` throws TypeError');
|
2018-04-19 16:11:50 +02:00
|
|
|
}, views);
|