]> andersk Git - openssh.git/blobdiff - regress/ssh-com-sftp.sh
- (tim) [configure.ac auth.c defines.h session.c openbsd-compat/port-uw.c
[openssh.git] / regress / ssh-com-sftp.sh
index 231efa13288f704c9a61d8aa6f8024423687dc6f..936b4cca7f46d8399437b911833abf86fc367fcf 100644 (file)
@@ -1,10 +1,17 @@
-#      $OpenBSD: ssh-com-sftp.sh,v 1.2 2002/04/10 08:45:30 markus Exp $
+#      $OpenBSD: ssh-com-sftp.sh,v 1.5 2004/02/24 17:06:52 markus Exp $
 #      Placed in the Public Domain.
 
 tid="basic sftp put/get with ssh.com server"
 
-DATA=/bin/ls
+DATA=/bin/ls${EXEEXT}
 COPY=${OBJ}/copy
+SFTPCMDFILE=${OBJ}/batch
+
+cat >$SFTPCMDFILE <<EOF
+version
+get $DATA ${COPY}.1
+put $DATA ${COPY}.2
+EOF
 
 BUFFERSIZE="5 1000 32000 64000"
 REQUESTS="1 2 10"
@@ -24,7 +31,14 @@ VERSIONS="
        2.3.1
        2.4.0
        3.0.0
-       3.1.0"
+       3.1.0
+       3.2.0
+       3.2.2
+       3.2.3
+       3.2.5
+       3.2.9
+       3.2.9.1
+       3.3.0"
 
 # go for it
 for v in ${VERSIONS}; do
@@ -37,18 +51,17 @@ for v in ${VERSIONS}; do
                for R in ${REQUESTS}; do
                        verbose "test $tid: buffer_size $B num_requests $R"
                        rm -f ${COPY}.1 ${COPY}.2
-                       ${SFTP} -P ${server} -B $B -R $R -b /dev/stdin \
-                       > /dev/null 2>&1 << EOF
-                       version
-                       get $DATA ${COPY}.1
-                       put $DATA ${COPY}.2
-EOF
+                       ${SFTP} -P ${server} -B $B -R $R -b $SFTPCMDFILE \
+                       > /dev/null 2>&1
                        r=$?
                        if [ $r -ne 0 ]; then
                                fail "sftp failed with $r"
+                       else                                
+                               cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
+                               cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
                        fi
-                       cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
-                       cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
                done
        done
 done
+rm -f ${COPY}.1 ${COPY}.2                
+rm -f $SFTPCMDFILE
This page took 0.308856 seconds and 4 git commands to generate.