test262/test/built-ins/Atomics/sub/non-shared-bufferdata.js

20 lines
716 B
JavaScript
Raw Normal View History

// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.sub
description: >
Atomics.sub will operate on TA when TA.buffer is not a SharedArrayBuffer
2020-05-27 21:00:02 +02:00
includes: [testTypedArray.js]
features: [ArrayBuffer, Atomics, TypedArray]
---*/
2020-05-27 21:00:02 +02:00
testWithAtomicsFriendlyTypedArrayConstructors(TA => {
const view = new TA(
new ArrayBuffer(TA.BYTES_PER_ELEMENT * 4)
);
2020-05-27 21:00:02 +02:00
assert.sameValue(Atomics.store(view, 0, 1), 1, 'Atomics.store(view, 0, 1) returns 1');
assert.sameValue(Atomics.sub(view, 0, 1), 1, 'Atomics.sub(view, 0, 1) returns 1');
2020-05-27 21:00:02 +02:00
assert.sameValue(Atomics.load(view, 0), 0, 'Atomics.load(view, 0) returns 0');
});