non-views.js (826B)
1 // |reftest| skip-if(!this.hasOwnProperty('Atomics')||!this.hasOwnProperty('SharedArrayBuffer')||(this.hasOwnProperty('getBuildConfiguration')&&getBuildConfiguration('arm64-simulator'))) -- Atomics,SharedArrayBuffer is not enabled unconditionally, ARM64 Simulator cannot emulate atomics 2 // Copyright (C) 2017 Mozilla Corporation. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-atomics.notify 7 description: > 8 Test Atomics.notify on view values other than TypedArrays 9 includes: [testAtomics.js] 10 features: [ArrayBuffer, Atomics, DataView, SharedArrayBuffer, Symbol, TypedArray] 11 ---*/ 12 13 testWithAtomicsNonViewValues(function(nonView) { 14 assert.throws(TypeError, function() { 15 Atomics.notify(nonView, 0, 0); 16 }); // Even with count == 0 17 }); 18 19 reportCompare(0, 0);