2020-05-06 20:15:39 +02:00
|
|
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-atomics.notify
|
|
|
|
description: >
|
|
|
|
Atomics.notify throws on non-shared integer TypedArrays
|
2020-05-27 21:00:02 +02:00
|
|
|
features: [ArrayBuffer, Atomics, BigInt, TypedArray]
|
2020-05-06 20:15:39 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
const nonsab = new ArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 8);
|
|
|
|
|
|
|
|
const poisoned = {
|
|
|
|
valueOf() {
|
|
|
|
throw new Test262Error('should not evaluate this code');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
Atomics.notify(new BigUint64Array(nonsab), poisoned, poisoned);
|
2024-03-23 02:28:44 +01:00
|
|
|
});
|