test262/test/built-ins/Atomics/wait/nan-for-timeout.js

42 lines
1.0 KiB
JavaScript
Raw Normal View History

// 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).
...
2018-04-04 20:57:56 +02:00
Undefined Return NaN.
5.If q is NaN, let t be +, else let t be max(q, 0)
2018-04-19 16:11:50 +02:00
features: [Atomics, SharedArrayBuffer, TypedArray]
---*/
function getReport() {
var r;
2018-04-19 16:11:50 +02:00
while ((r = $262.agent.getReport()) == null) {
$262.agent.sleep(10);
2018-04-19 16:11:50 +02:00
}
return r;
}
2018-05-18 21:24:57 +02:00
$262.agent.start(`
$262.agent.receiveBroadcast(function(sab) {
var i32a = new Int32Array(sab);
$262.agent.report(Atomics.wait(i32a, 0, 0, NaN)); // NaN => +Infinity
$262.agent.leaving();
2018-05-18 21:24:57 +02:00
});
`);
var i32a = new Int32Array(new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT));
$262.agent.broadcast(i32a.buffer);
$262.agent.sleep(500); // Ample time
assert.sameValue(Atomics.wake(i32a, 0), 1);
assert.sameValue(getReport(), "ok");