mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			579 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			579 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2017 Mozilla Corporation.  All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
esid: sec-atomics.xor
 | 
						|
description: >
 | 
						|
  Test Atomics.xor on shared non-integer TypedArrays
 | 
						|
includes: [testTypedArray.js]
 | 
						|
features: [Atomics, SharedArrayBuffer, TypedArray]
 | 
						|
---*/
 | 
						|
 | 
						|
var buffer = new SharedArrayBuffer(1024);
 | 
						|
 | 
						|
testWithTypedArrayConstructors(function(TA) {
 | 
						|
  assert.throws(TypeError, function() {
 | 
						|
    Atomics.xor(new TA(buffer), 0, 0);
 | 
						|
  }, '`Atomics.xor(new TA(buffer), 0, 0)` throws TypeError');
 | 
						|
}, floatArrayConstructors);
 |