]> andersk Git - openssh.git/commitdiff
- dtucker@cvs.openbsd.org 2004/06/17 06:00:05
authordtucker <dtucker>
Thu, 17 Jun 2004 06:32:45 +0000 (06:32 +0000)
committerdtucker <dtucker>
Thu, 17 Jun 2004 06:32:45 +0000 (06:32 +0000)
     [regress/multiplex.sh]
     Use DATA and COPY for test data rather than hard-coded paths; ok djm@

ChangeLog
regress/multiplex.sh

index 4dc3cb42bfd9e458ab71c8aa6b37bc7bdafb60b5..ccc1eb72f5b9a9b4828ddbb2780ddb762e9826da 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,9 @@
      [regress/multiplex.sh]
      Remove datafile between and after tests, kill sshd rather than wait;
      ok djm@
+   - dtucker@cvs.openbsd.org 2004/06/17 06:00:05
+     [regress/multiplex.sh]
+     Use DATA and COPY for test data rather than hard-coded paths; ok djm@
 
 20040616
  - (dtucker) [openbsd-compat/port-aix.c] Expand whitespace -> tabs. No
index fb4927e6212a3f84705037f0933219bc51f22d84..9fea117bd086a497c6366d379760c216d3aba218 100644 (file)
@@ -1,41 +1,44 @@
-#      $OpenBSD: multiplex.sh,v 1.3 2004/06/17 05:51:59 dtucker Exp $
+#      $OpenBSD: multiplex.sh,v 1.4 2004/06/17 06:00:05 dtucker Exp $
 #      Placed in the Public Domain.
 
 CTL=$OBJ/ctl-sock
 
 tid="connection multiplexing"
 
+DATA=/bin/ls
+COPY=$OBJ/ls.copy
+
 start_sshd
 
 trace "start master, fork to background"
 ${SSH} -2 -MS$CTL -F $OBJ/ssh_config -f somehost sleep 60
 
-rm -f $OBJ/ls.copy
+rm -f ${COPY}
 trace "ssh transfer over multiplexed connection and check result"
-${SSH} -S$CTL otherhost cat /bin/ls > $OBJ/ls.copy
-test -f $OBJ/ls.copy                   || fail "failed copy /bin/ls"
-cmp /bin/ls $OBJ/ls.copy               || fail "corrupted copy of /bin/ls"
+${SSH} -S$CTL otherhost cat ${DATA} > ${COPY}
+test -f ${COPY}                                || fail "failed copy ${DATA}" 
+cmp ${DATA} ${COPY}                    || fail "corrupted copy of ${DATA}"
 
-rm -f $OBJ/ls.copy
+rm -f ${COPY}
 trace "ssh transfer over multiplexed connection and check result"
-${SSH} -S $CTL otherhost cat /bin/ls > $OBJ/ls.copy
-test -f $OBJ/ls.copy                   || fail "failed copy /bin/ls"
-cmp /bin/ls $OBJ/ls.copy               || fail "corrupted copy of /bin/ls"
+${SSH} -S $CTL otherhost cat ${DATA} > ${COPY}
+test -f ${COPY}                                || fail "failed copy ${DATA}" 
+cmp ${DATA} ${COPY}                    || fail "corrupted copy of ${DATA}"
 
-rm -f $OBJ/ls.copy
+rm -f ${COPY}
 trace "sftp transfer over multiplexed connection and check result"
-echo "get /bin/ls $OBJ/ls.copy" | \
+echo "get ${DATA} ${COPY}" | \
        ${SFTP} -oControlPath=$CTL otherhost >/dev/null 2>&1
-test -f $OBJ/ls.copy                   || fail "failed copy /bin/ls"
-cmp /bin/ls $OBJ/ls.copy               || fail "corrupted copy of /bin/ls"
+test -f ${COPY}                                || fail "failed copy ${DATA}" 
+cmp ${DATA} ${COPY}                    || fail "corrupted copy of ${DATA}"
 
-rm -f $OBJ/ls.copy
+rm -f ${COPY}
 trace "scp transfer over multiplexed connection and check result"
-${SCP} -oControlPath=$CTL otherhost:/bin/ls $OBJ/ls.copy >/dev/null 2>&1
-test -f $OBJ/ls.copy                   || fail "failed copy /bin/ls"
-cmp /bin/ls $OBJ/ls.copy               || fail "corrupted copy of /bin/ls"
+${SCP} -oControlPath=$CTL otherhost:${DATA} ${COPY} >/dev/null 2>&1
+test -f ${COPY}                                || fail "failed copy ${DATA}" 
+cmp ${DATA} ${COPY}                    || fail "corrupted copy of ${DATA}"
 
-rm -f $OBJ/ls.copy
+rm -f ${COPY}
 
 for s in 0 1 4 5 44; do
        trace "exit status $s over multiplexed connection"
This page took 0.049024 seconds and 5 git commands to generate.