diff options
author | Damien Miller <djm@mindrot.org> | 2006-01-31 22:05:23 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-01-31 22:05:23 +1100 |
commit | 0b996462f842e6b5a5d409ad4538e1779dd69bf6 (patch) | |
tree | bb0d37ca51af3e434ab2f3c3e215d2020e811538 | |
parent | 15a815bb6476ddba55508b177773c9c99c6fe46e (diff) |
- djm@cvs.openbsd.org 2006/01/27 06:49:21
[scp.sh]
regress test for local to local scp copies; ok dtucker@
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | regress/scp.sh | 20 |
2 files changed, 23 insertions, 2 deletions
@@ -60,6 +60,9 @@ | |||
60 | [regress/scp-ssh-wrapper.sh] | 60 | [regress/scp-ssh-wrapper.sh] |
61 | Fix assumption about how many args scp will pass; ok djm@ | 61 | Fix assumption about how many args scp will pass; ok djm@ |
62 | NB. ID sync only, we already had this | 62 | NB. ID sync only, we already had this |
63 | - djm@cvs.openbsd.org 2006/01/27 06:49:21 | ||
64 | [scp.sh] | ||
65 | regress test for local to local scp copies; ok dtucker@ | ||
63 | 66 | ||
64 | 20060129 | 67 | 20060129 |
65 | - (dtucker) [configure.ac opensshd.init.in] Bug #1144: Use /bin/sh for the | 68 | - (dtucker) [configure.ac opensshd.init.in] Bug #1144: Use /bin/sh for the |
@@ -3785,4 +3788,4 @@ | |||
3785 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 3788 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
3786 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 3789 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
3787 | 3790 | ||
3788 | $Id: ChangeLog,v 1.4108 2006/01/31 11:03:11 djm Exp $ | 3791 | $Id: ChangeLog,v 1.4109 2006/01/31 11:05:23 djm Exp $ |
diff --git a/regress/scp.sh b/regress/scp.sh index 1043b8ea2..02f541011 100644 --- a/regress/scp.sh +++ b/regress/scp.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: scp.sh,v 1.4 2005/06/30 11:02:37 markus Exp $ | 1 | # $OpenBSD: scp.sh,v 1.5 2006/01/27 06:49:21 djm Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | tid="scp" | 4 | tid="scp" |
@@ -28,6 +28,11 @@ scpclean() { | |||
28 | mkdir ${DIR} ${DIR2} | 28 | mkdir ${DIR} ${DIR2} |
29 | } | 29 | } |
30 | 30 | ||
31 | verbose "$tid: simple copy local file to local file" | ||
32 | scpclean | ||
33 | $SCP $scpopts ${DATA} ${COPY} || fail "copy failed" | ||
34 | cmp ${DATA} ${COPY} || fail "corrupted copy" | ||
35 | |||
31 | verbose "$tid: simple copy local file to remote file" | 36 | verbose "$tid: simple copy local file to remote file" |
32 | scpclean | 37 | scpclean |
33 | $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed" | 38 | $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed" |
@@ -44,6 +49,12 @@ cp ${DATA} ${COPY} | |||
44 | $SCP $scpopts ${COPY} somehost:${DIR} || fail "copy failed" | 49 | $SCP $scpopts ${COPY} somehost:${DIR} || fail "copy failed" |
45 | cmp ${COPY} ${DIR}/copy || fail "corrupted copy" | 50 | cmp ${COPY} ${DIR}/copy || fail "corrupted copy" |
46 | 51 | ||
52 | verbose "$tid: simple copy local file to local dir" | ||
53 | scpclean | ||
54 | cp ${DATA} ${COPY} | ||
55 | $SCP $scpopts ${COPY} ${DIR} || fail "copy failed" | ||
56 | cmp ${COPY} ${DIR}/copy || fail "corrupted copy" | ||
57 | |||
47 | verbose "$tid: simple copy remote file to local dir" | 58 | verbose "$tid: simple copy remote file to local dir" |
48 | scpclean | 59 | scpclean |
49 | cp ${DATA} ${COPY} | 60 | cp ${DATA} ${COPY} |
@@ -57,6 +68,13 @@ cp ${DATA} ${DIR}/copy | |||
57 | $SCP $scpopts -r ${DIR} somehost:${DIR2} || fail "copy failed" | 68 | $SCP $scpopts -r ${DIR} somehost:${DIR2} || fail "copy failed" |
58 | diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy" | 69 | diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy" |
59 | 70 | ||
71 | verbose "$tid: recursive local dir to local dir" | ||
72 | scpclean | ||
73 | rm -rf ${DIR2} | ||
74 | cp ${DATA} ${DIR}/copy | ||
75 | $SCP $scpopts -r ${DIR} ${DIR2} || fail "copy failed" | ||
76 | diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy" | ||
77 | |||
60 | verbose "$tid: recursive remote dir to local dir" | 78 | verbose "$tid: recursive remote dir to local dir" |
61 | scpclean | 79 | scpclean |
62 | rm -rf ${DIR2} | 80 | rm -rf ${DIR2} |