Add more tests for Atomics wait (#1495)

This commit is contained in:
Leo Balter 2018-03-19 19:50:28 -04:00 committed by GitHub
parent 03f0f56961
commit 431e6cb20c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 89 additions and 8 deletions

View File

@ -0,0 +1,25 @@
// 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: >
Atomics.wait throws if agent cannot be suspended, CanBlock is false
info: |
Assuming [[CanBlock]] is false for the main host.
Atomics.wait( typedArray, index, value, timeout )
... (after args validation)
6. Let B be AgentCanSuspend().
7. If B is false, throw a TypeError exception.
...
features: [Atomics, SharedArrayBuffer, TypedArray]
---*/
var sab = new SharedArrayBuffer(4);
var int32Array = new Int32Array(sab);
assert.throws(TypeError, function() {
Atomics.wait(int32Array, 0, 0, 0);
});

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.wait
description:
description: >
Throws a TypeError if typedArray.buffer is not a SharedArrayBuffer
info: |
Atomics.wait( typedArray, index, value, timeout )

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.wait
description:
description: >
Throws a TypeError if index arg can not be converted to an Integer
info: |
Atomics.wait( typedArray, index, value, timeout )

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.wait
description:
description: >
Throws a TypeError if the typedArray arg is not a TypedArray object
info: |
Atomics.wait( typedArray, index, value, timeout )

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.wait
description:
description: >
Throws a RangeError is index < 0
info: |
Atomics.wait( typedArray, index, value, timeout )

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.wait
description:
description: >
Throws a TypeError if typedArray arg is not an Object
info: |
Atomics.wait( typedArray, index, value, timeout )

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.wait
description:
description: >
A null value for bufferData throws a TypeError
info: |
Atomics.wait( typedArray, index, value, timeout )

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.wait
description:
description: >
An undefined index arg should translate to 0
info: |
Atomics.wait( typedArray, index, value, timeout )

View File

@ -0,0 +1,55 @@
// 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: >
Test that Atomics.wait returns the right result when it was awoken before
a timeout
info: |
Atomics.wait( typedArray, index, value, timeout )
2.Let i be ? ValidateAtomicAccess(typedArray, index).
...
2.Let accessIndex be ? ToIndex(requestIndex).
9.If IsSharedArrayBuffer(buffer) is false, throw a TypeError exception.
...
3.If bufferData is a Data Block, return false
If value is undefined, then
Let index be 0.
features: [Atomics, SharedArrayBuffer, TypedArray]
---*/
var timeout = 20000;
$262.agent.start(
`
$262.agent.receiveBroadcast(function (sab) {
var int32Array = new Int32Array(sab);
$262.agent.report(Atomics.wait(int32Array, 0, 0, ${timeout}));
$262.agent.leaving();
})
`);
var sab = new SharedArrayBuffer(4);
var int32Array = new Int32Array(sab);
var sleeping = 100;
$262.agent.broadcast(int32Array.buffer);
$262.agent.sleep(sleeping);
assert.sameValue(Atomics.wake(int32Array, 0), 1);
assert.sameValue(getReport(), "ok");
assert.sameValue(sleeping < timeout, "this test assumes it won't last for more than 20 seconds");
function getReport() {
var r;
while ((r = $262.agent.getReport()) == null) {
sleeping += 100;
$262.agent.sleep(100);
}
return r;
}

View File

@ -25,7 +25,8 @@ assert.sameValue(getReport(), "ok");
function getReport() {
var r;
while ((r = $262.agent.getReport()) == null)
while ((r = $262.agent.getReport()) == null) {
$262.agent.sleep(100);
}
return r;
}