]> andersk Git - gssapi-openssh.git/blobdiff - openssh/regress/reexec.sh
Import of OpenSSH 4.0p1
[gssapi-openssh.git] / openssh / regress / reexec.sh
index 39fffefbc35640c35bc4b0eb4ec3e50c643ab90c..d69b8c577985b7f83c00979acde6e4c876e2baa9 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: reexec.sh,v 1.3 2004/06/25 01:32:44 djm Exp $
+#      $OpenBSD: reexec.sh,v 1.5 2004/10/08 02:01:50 djm Exp $
 #      Placed in the Public Domain.
 
 tid="reexec tests"
@@ -6,36 +6,40 @@ tid="reexec tests"
 DATA=/bin/ls
 COPY=${OBJ}/copy
 SSHD_ORIG=$SSHD
-SSHD_COPY=$OBJ/sshd.copy
+SSHD_COPY=$OBJ/sshd
 
 # Start a sshd and then delete it
-start_sshd_copy_zap ()
+start_sshd_copy ()
 {
        cp $SSHD_ORIG $SSHD_COPY
        SSHD=$SSHD_COPY
        start_sshd
-       rm -f $SSHD_COPY
        SSHD=$SSHD_ORIG
 }
 
+# Do basic copy tests
+copy_tests ()
+{
+       rm -f ${COPY}
+       for p in 1 2; do
+               verbose "$tid: proto $p"
+               ${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \
+                   cat ${DATA} > ${COPY}
+               if [ $? -ne 0 ]; then
+                       fail "ssh cat $DATA failed"
+               fi
+               cmp ${DATA} ${COPY}             || fail "corrupted copy"
+               rm -f ${COPY}
+       done
+}
+
 verbose "test config passing"
-cp $OBJ/sshd_config $OBJ/sshd_config.orig
 
+cp $OBJ/sshd_config $OBJ/sshd_config.orig
 start_sshd
-
 echo "InvalidXXX=no" >> $OBJ/sshd_config
 
-rm -f ${COPY}
-for p in 1 2; do
-       verbose "$tid: proto $p"
-       ${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \
-           cat ${DATA} > ${COPY}
-       if [ $? -ne 0 ]; then
-               fail "ssh cat $DATA failed"
-       fi
-       cmp ${DATA} ${COPY}             || fail "corrupted copy"
-       rm -f ${COPY}
-done
+copy_tests
 
 $SUDO kill `cat $PIDFILE`
 rm -f $PIDFILE
@@ -44,19 +48,10 @@ cp $OBJ/sshd_config.orig $OBJ/sshd_config
 
 verbose "test reexec fallback"
 
-start_sshd_copy_zap
-
-rm -f ${COPY}
-for p in 1 2; do
-       verbose "$tid: proto $p"
-       ${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \
-           cat ${DATA} > ${COPY}
-       if [ $? -ne 0 ]; then
-               fail "ssh cat $DATA failed"
-       fi
-       cmp ${DATA} ${COPY}             || fail "corrupted copy"
-       rm -f ${COPY}
-done
+start_sshd_copy
+rm -f $SSHD_COPY
+
+copy_tests
 
 $SUDO kill `cat $PIDFILE`
 rm -f $PIDFILE
@@ -66,22 +61,12 @@ verbose "test reexec fallback without privsep"
 cp $OBJ/sshd_config.orig $OBJ/sshd_config
 echo "UsePrivilegeSeparation=no" >> $OBJ/sshd_config
 
-start_sshd_copy_zap
-
-rm -f ${COPY}
-for p in 1 2; do
-       verbose "$tid: proto $p"
-       ${SSH} -nqo "Protocol=$p" -F $OBJ/ssh_config somehost \
-           cat ${DATA} > ${COPY}
-       if [ $? -ne 0 ]; then
-               fail "ssh cat $DATA failed"
-       fi
-       cmp ${DATA} ${COPY}             || fail "corrupted copy"
-       rm -f ${COPY}
-done
+start_sshd_copy
+rm -f $SSHD_COPY
+
+copy_tests
 
 $SUDO kill `cat $PIDFILE`
 rm -f $PIDFILE
 
-cp $OBJ/sshd_config.orig $OBJ/sshd_config
 
This page took 0.062645 seconds and 4 git commands to generate.