2020-05-20 20:16:53 +02:00
|
|
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
2020-05-13 19:25:01 +02:00
|
|
|
// 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)
|
|
|
|
);
|
|
|
|
|
2020-05-20 20:37:33 +02:00
|
|
|
assert.sameValue(Atomics.and(i32a, 0, 1), 0, 'Atomics.and(i32a, 0, 1) returns 0');
|
|
|
|
assert.sameValue(Atomics.load(i32a, 0), 0, 'Atomics.load(i32a, 0) returns 0');
|
2020-05-13 19:25:01 +02:00
|
|
|
|