]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssh/regress/yes-head.sh
stand/powerpc: Only build loader.kboot for powerpc64
[FreeBSD/FreeBSD.git] / crypto / openssh / regress / yes-head.sh
1 #       $OpenBSD: yes-head.sh,v 1.6 2017/04/30 23:34:55 djm Exp $
2 #       Placed in the Public Domain.
3
4 tid="yes pipe head"
5
6 lines=`${SSH} -F $OBJ/ssh_proxy thishost 'sh -c "while true;do echo yes;done | _POSIX2_VERSION=199209 head -2000"' | (sleep 3 ; wc -l)`
7 if [ $? -ne 0 ]; then
8         fail "yes|head test failed"
9         lines = 0;
10 fi
11 if [ $lines -ne 2000 ]; then
12         fail "yes|head returns $lines lines instead of 2000"
13 fi