test262/test/built-ins/Atomics/wait/poisoned-object-for-timeout...

61 lines
1.3 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: >
Passing an object with no callable methods for the timeout param throws
info: |
Atomics.wait( typedArray, index, value, timeout )
4.Let q be ? ToNumber(timeout).
...
Object
Apply the following steps:
Let primValue be ? ToPrimitive(argument, hint Number).
...
g. Return ? OrdinaryToPrimitive(input, hint).
...
6.Throw a TypeError exception.
features: [ Atomics ]
---*/
function getReport() {
var r;
while ((r = $262.agent.getReport()) == null) {
$262.agent.sleep(100);
}
return r;
}
$262.agent.start(
`
$262.agent.receiveBroadcast(function (sab) {
2018-03-19 19:14:43 +01:00
var int32Array = new Int32Array(sab);
var poisoned = {
valueOf: false,
toString: false
};
2018-03-19 19:14:43 +01:00
var err;
try {
Atomics.wait(int32Array, 0, 0, poisoned);
} catch(e) {
2018-03-19 19:14:43 +01:00
err = e.name;
}
2018-03-19 19:14:43 +01:00
$262.agent.report(err);
$262.agent.leaving();
})
`);
var sab = new SharedArrayBuffer(4);
var int32Array = new Int32Array(sab);
$262.agent.broadcast(int32Array.buffer);
assert.sameValue(getReport(), 'TypeError');
assert.sameValue(Atomics.wake(int32Array, 0), 0);