mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			635 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			635 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2020 Rick Waldron. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
esid: sec-atomics.store
 | 
						|
description: >
 | 
						|
  Atomics.store will operate on TA when TA.buffer is not a SharedArrayBuffer
 | 
						|
includes: [testTypedArray.js]
 | 
						|
features: [ArrayBuffer, Atomics, TypedArray]
 | 
						|
---*/
 | 
						|
testWithAtomicsFriendlyTypedArrayConstructors(TA => {
 | 
						|
  const view = new TA(
 | 
						|
    new ArrayBuffer(TA.BYTES_PER_ELEMENT * 4)
 | 
						|
  );
 | 
						|
 | 
						|
  assert.sameValue(Atomics.store(view, 0, 1), 1, 'Atomics.store(view, 0, 1) returns 1');
 | 
						|
  assert.sameValue(Atomics.load(view, 0), 1, 'Atomics.load(view, 0) returns 1');
 | 
						|
});
 |