2018-04-24 20:11:32 +02:00
|
|
|
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-atomics.wake
|
|
|
|
description: >
|
|
|
|
Test range checking of Atomics.wake on arrays that allow atomic operations
|
|
|
|
info: |
|
|
|
|
Atomics.wait( typedArray, index, value, timeout )
|
|
|
|
|
|
|
|
1. Let buffer be ? ValidateSharedIntegerTypedArray(typedArray, true).
|
|
|
|
...
|
|
|
|
|
2018-04-25 23:29:53 +02:00
|
|
|
includes: [testAtomics.js]
|
2018-04-25 17:33:53 +02:00
|
|
|
features: [ArrayBuffer, arrow-function, Atomics, DataView, for-of, let, SharedArrayBuffer, TypedArray]
|
2018-04-24 20:11:32 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
var sab = new SharedArrayBuffer(8);
|
2018-04-25 23:29:53 +02:00
|
|
|
let i32a = new Int32Array(sab);
|
2018-04-24 20:11:32 +02:00
|
|
|
|
2018-04-25 23:29:53 +02:00
|
|
|
testWithAtomicsOutOfBoundsIndices(function(IdxGen) {
|
2018-05-18 21:00:10 +02:00
|
|
|
assert.throws(RangeError, function() {
|
|
|
|
Atomics.wait(i32a, IdxGen(i32a), 0, 0);
|
|
|
|
}, 'Atomics.wait(i32a, IdxGen(i32a), 0, 0) throws RangeError');
|
2018-04-25 23:29:53 +02:00
|
|
|
});
|