mirror of https://github.com/tc39/test262.git
18 lines
476 B
JavaScript
18 lines
476 B
JavaScript
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
esid: sec-atomics.and
|
||
|
description: >
|
||
|
Atomics.and will operate on TA when TA.buffer is not a SharedArrayBuffer
|
||
|
features: [ArrayBuffer, Atomics, TypedArray]
|
||
|
---*/
|
||
|
|
||
|
const i32a = new Int32Array(
|
||
|
new ArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 4)
|
||
|
);
|
||
|
|
||
|
assert.sameValue(Atomics.and(i32a, 0, 1), 0);
|
||
|
assert.sameValue(Atomics.load(i32a, 0), 0);
|
||
|
|