mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-02-02 23:21:57 +00:00
- dtucker@cvs.openbsd.org 2004/06/16 13:15:09
[regress/scp.sh] Make scp -r tests use diff -rN not cmp (which won't do dirs. ok markus@
This commit is contained in:
parent
7a06f62b6a
commit
6f0e35b566
@ -16,6 +16,9 @@
|
|||||||
- djm@cvs.openbsd.org 2004/06/13 15:16:54
|
- djm@cvs.openbsd.org 2004/06/13 15:16:54
|
||||||
[regress/test-exec.sh]
|
[regress/test-exec.sh]
|
||||||
remove duplicate setting of $SCP; spotted by markus@
|
remove duplicate setting of $SCP; spotted by markus@
|
||||||
|
- dtucker@cvs.openbsd.org 2004/06/16 13:15:09
|
||||||
|
[regress/scp.sh]
|
||||||
|
Make scp -r tests use diff -rN not cmp (which won't do dirs. ok markus@
|
||||||
- (dtucker) [regress/test-exec.sh]
|
- (dtucker) [regress/test-exec.sh]
|
||||||
Move Portable-only StrictModes to top of list to make syncs easier.
|
Move Portable-only StrictModes to top of list to make syncs easier.
|
||||||
- (dtucker) [regress/README.regress]
|
- (dtucker) [regress/README.regress]
|
||||||
@ -1245,4 +1248,4 @@
|
|||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3395 2004/06/16 11:08:32 dtucker Exp $
|
$Id: ChangeLog,v 1.3396 2004/06/16 13:22:37 dtucker Exp $
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $OpenBSD: scp.sh,v 1.1 2004/06/13 13:51:02 dtucker Exp $
|
# $OpenBSD: scp.sh,v 1.2 2004/06/16 13:15:09 dtucker Exp $
|
||||||
# Placed in the Public Domain.
|
# Placed in the Public Domain.
|
||||||
|
|
||||||
tid="scp"
|
tid="scp"
|
||||||
@ -45,15 +45,17 @@ cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
|
|||||||
|
|
||||||
verbose "$tid: recursive local dir to remote dir"
|
verbose "$tid: recursive local dir to remote dir"
|
||||||
scpclean
|
scpclean
|
||||||
|
rm -rf ${DIR2}
|
||||||
cp ${DATA} ${DIR}/copy
|
cp ${DATA} ${DIR}/copy
|
||||||
$SCP $scpopts -r ${DIR} somehost:${DIR2} || fail "copy failed"
|
$SCP $scpopts -r ${DIR} somehost:${DIR2} || fail "copy failed"
|
||||||
cmp ${DIR} ${DIR2} || fail "corrupted copy"
|
diff -rN ${DIR} ${DIR2} || fail "corrupted copy"
|
||||||
|
|
||||||
verbose "$tid: recursive remote dir to local dir"
|
verbose "$tid: recursive remote dir to local dir"
|
||||||
scpclean
|
scpclean
|
||||||
|
rm -rf ${DIR2}
|
||||||
cp ${DATA} ${DIR}/copy
|
cp ${DATA} ${DIR}/copy
|
||||||
$SCP $scpopts -r somehost:${DIR} ${DIR2} || fail "copy failed"
|
$SCP $scpopts -r somehost:${DIR} ${DIR2} || fail "copy failed"
|
||||||
cmp ${DIR} ${DIR2} || fail "corrupted copy"
|
diff -rN ${DIR} ${DIR2} || fail "corrupted copy"
|
||||||
|
|
||||||
for i in 0 1 2 3 4; do
|
for i in 0 1 2 3 4; do
|
||||||
verbose "$tid: disallow bad server #$i"
|
verbose "$tid: disallow bad server #$i"
|
||||||
|
Loading…
Reference in New Issue
Block a user