You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
	
		
		
			
				
				
					
						
						
						
							|  | #!/bin/bash
 | 
						
						
						
							|  | set -eu -o pipefail
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | # Small convenience script for running the tests with various combinations of
 | 
						
						
						
							|  | # arch/tags. This assumes we're running on amd64 and have qemu available.
 | 
						
						
						
							|  | 
 | 
						
						
						
							|  | go test ./...
 | 
						
						
						
							|  | go test -tags purego ./...
 | 
						
						
						
							|  | GOARCH=arm64 go test
 | 
						
						
						
							|  | GOARCH=arm64 go test -tags purego
 |