mirror of https://github.com/tc39/test262.git
20 lines
512 B
JavaScript
20 lines
512 B
JavaScript
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-atomics.sub
|
|
description: >
|
|
Test Atomics.sub on shared non-integer TypedArrays
|
|
includes: [testTypedArray.js]
|
|
features: [Atomics, SharedArrayBuffer, TypedArray]
|
|
---*/
|
|
|
|
var buffer = new SharedArrayBuffer(1024);
|
|
|
|
testWithTypedArrayConstructors(function(TA) {
|
|
assert.throws(TypeError, (() => Atomics.sub(new TA(buffer), 0, 0)));
|
|
}, floatArrayConstructors);
|
|
|
|
|
|
|