Race is only supported on amd64, so only run if GOARCH is amd64 Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
		
			
				
	
	
		
			8 lines
		
	
	
		
			142 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			142 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#freebsd specific settings
 | 
						|
COMMANDS += containerd-shim
 | 
						|
 | 
						|
# amd64 supports go test -race
 | 
						|
ifeq ("amd64", $(GOARCH))
 | 
						|
	TESTFLAGS_RACE= -race
 | 
						|
endif
 |