| # $OpenBSD: ssh-com-sftp.sh,v 1.7 2013/05/17 04:29:14 dtucker Exp $ |
| # Placed in the Public Domain. |
| tid="basic sftp put/get with ssh.com server" |
| BUFFERSIZE="5 1000 32000 64000" |
| #TEST_COMBASE=/path/to/ssh/com/binaries |
| if [ "X${TEST_COMBASE}" = "X" ]; then |
| fatal '$TEST_COMBASE is not set' |
| server=${TEST_COMBASE}/${v}/sftp-server2 |
| if [ ! -x ${server} ]; then |
| for B in ${BUFFERSIZE}; do |
| verbose "test $tid: buffer_size $B num_requests $R" |
| rm -f ${COPY}.1 ${COPY}.2 |
| ${SFTP} -D ${server} -B $B -R $R -b $SFTPCMDFILE \ |
| fail "sftp failed with $r" |
| cmp $DATA ${COPY}.1 || fail "corrupted copy after get" |
| cmp $DATA ${COPY}.2 || fail "corrupted copy after put" |
| rm -f ${COPY}.1 ${COPY}.2 |