freebsd_amp_hwpstate/regress/stderr-after-eof.sh

25 lines
603 B
Bash
Raw Normal View History

2018-05-06 12:24:45 +00:00
# $OpenBSD: stderr-after-eof.sh,v 1.3 2017/04/30 23:34:55 djm Exp $
2002-06-27 22:31:32 +00:00
# Placed in the Public Domain.
tid="stderr data after eof"
# setup data
rm -f ${DATA} ${COPY}
cp /dev/null ${DATA}
for i in 1 2 3 4 5 6; do
2013-09-18 17:27:38 +00:00
(date;echo $i) | md5 >> ${DATA}
2002-06-27 22:31:32 +00:00
done
2018-05-06 12:24:45 +00:00
${SSH} -F $OBJ/ssh_proxy otherhost \
2002-06-27 22:31:32 +00:00
exec sh -c \'"exec > /dev/null; sleep 2; cat ${DATA} 1>&2 $s"\' \
2> ${COPY}
r=$?
if [ $r -ne 0 ]; then
fail "ssh failed with exit code $r"
fi
egrep 'Disconnecting: Received extended_data after EOF' ${COPY} &&
fail "ext data received after eof"
cmp ${DATA} ${COPY} || fail "stderr corrupt"
rm -f ${DATA} ${COPY}