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

16 lines
661 B
JavaScript
Raw Normal View History

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