summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-12-07 11:26:15 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-12-07 11:26:15 +1100
commit641b34c72b8509283b04c7f78e1ef88f25b8cb9b (patch)
treefa5edcf8e77c435d18b5e82f2817d1cd849f8891 /regress
parentd028fea13a24c2728e00bba98e7ff73a0470792d (diff)
- (dtucker) [regress/scp.sh] Use portable-friendly $DIFFOPTs in new test.
Diffstat (limited to 'regress')
-rw-r--r--regress/scp.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/scp.sh b/regress/scp.sh
index 39e8af4c6..c3034b6e7 100644
--- a/regress/scp.sh
+++ b/regress/scp.sh
@@ -73,7 +73,7 @@ if [ ! -z "$SUDO" ]; then
73 chmod 660 ${DIR2}/copy 73 chmod 660 ${DIR2}/copy
74 $SUDO chown root ${DIR2}/copy 74 $SUDO chown root ${DIR2}/copy
75 $SCP -p $scpopts somehost:${DIR}/\* ${DIR2} >/dev/null 2>&1 75 $SCP -p $scpopts somehost:${DIR}/\* ${DIR2} >/dev/null 2>&1
76 diff -rN ${DIR} ${DIR2} || fail "corrupted copy" 76 diff ${DIFFOPT} ${DIR} ${DIR2} || fail "corrupted copy"
77 $SUDO rm ${DIR2}/copy 77 $SUDO rm ${DIR2}/copy
78fi 78fi
79 79