test262/test/built-ins/Atomics/notify/shared-nonint-views.js

22 lines
594 B
JavaScript
Raw Normal View History

// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2018-06-28 22:13:01 +02:00
esid: sec-atomics.notify
description: >
2018-06-28 22:15:01 +02:00
Test Atomics.notify on shared non-integer TypedArrays
includes: [testTypedArray.js]
2018-04-19 16:11:50 +02:00
features: [Atomics, SharedArrayBuffer, TypedArray]
---*/
2018-04-19 16:11:50 +02:00
var buffer = new SharedArrayBuffer(1024);
testWithTypedArrayConstructors(function(TA) {
2018-05-18 21:00:10 +02:00
assert.throws(TypeError, function() {
2018-06-28 22:15:01 +02:00
Atomics.notify(new TA(buffer), 0, 0);
}, '`Atomics.notify(new TA(buffer), 0, 0)` throws TypeError');
2018-04-19 16:11:50 +02:00
}, floatArrayConstructors);