mirror of
				https://github.com/PowerShell/Win32-OpenSSH.git
				synced 2025-10-31 03:34:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			367 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			367 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #	$OpenBSD: broken-pipe.sh,v 1.5 2015/03/03 22:35:19 markus Exp $
 | |
| #	Placed in the Public Domain.
 | |
| 
 | |
| tid="broken pipe test"
 | |
| 
 | |
| for p in ${SSH_PROTOCOLS}; do
 | |
| 	trace "protocol $p"
 | |
| 	for i in 1 2 3 4; do
 | |
| 		${SSH} -$p -F $OBJ/ssh_config_config nexthost echo $i 2> /dev/null | true
 | |
| 		r=$?
 | |
| 		if [ $r -ne 0 ]; then
 | |
| 			fail "broken pipe returns $r for protocol $p"
 | |
| 		fi
 | |
| 	done
 | |
| done
 |