mirror of https://github.com/tc39/test262.git
43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
|
// Copyright (C) 2018 Amal Hussein. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
esid: sec-atomics.wait
|
||
|
description: >
|
||
|
NaN timeout arg should result in an infinite timeout
|
||
|
info: |
|
||
|
Atomics.wait( typedArray, index, value, timeout )
|
||
|
|
||
|
4.Let q be ? ToNumber(timeout).
|
||
|
...
|
||
|
Undefined Return NaN.
|
||
|
5.If q is NaN, let t be +∞, else let t be max(q, 0)
|
||
|
|
||
|
features: [Atomics, BigInt, SharedArrayBuffer, TypedArray]
|
||
|
---*/
|
||
|
|
||
|
function getReport() {
|
||
|
var r;
|
||
|
while ((r = $262.agent.getReport()) == null) {
|
||
|
$262.agent.sleep(10);
|
||
|
}
|
||
|
return r;
|
||
|
}
|
||
|
|
||
|
$262.agent.start(
|
||
|
`
|
||
|
$262.agent.receiveBroadcast(function(sab) {
|
||
|
var i64a = new BigInt64Array(sab);
|
||
|
$262.agent.report(Atomics.wait(i64a, 0, 0, NaN)); // NaN => +Infinity
|
||
|
$262.agent.leaving();
|
||
|
});
|
||
|
`);
|
||
|
|
||
|
var i64a = new BigInt64Array(new SharedArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT));
|
||
|
|
||
|
$262.agent.broadcast(i64a.buffer);
|
||
|
$262.agent.sleep(500); // Ample time
|
||
|
|
||
|
assert.sameValue(Atomics.wake(i64a, 0), 1);
|
||
|
assert.sameValue(getReport(), "ok");
|