Lines Matching refs:COPY
16 DIR=${COPY}.dd
17 DIR2=${COPY}.dd2
26 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}
32 $SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
33 cmp ${DATA} ${COPY} || fail "corrupted copy"
37 $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed"
38 cmp ${DATA} ${COPY} || fail "corrupted copy"
42 $SCP $scpopts somehost:${DATA} ${COPY} || fail "copy failed"
43 cmp ${DATA} ${COPY} || fail "corrupted copy"
47 cp ${DATA} ${COPY}
48 $SCP $scpopts ${COPY} somehost:${DIR} || fail "copy failed"
49 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
53 cp ${DATA} ${COPY}
54 $SCP $scpopts ${COPY} ${DIR} || fail "copy failed"
55 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
59 cp ${DATA} ${COPY}
60 $SCP $scpopts somehost:${COPY} ${DIR} || fail "copy failed"
61 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
120 echo a > ${COPY}
122 $SCP $scpopts ${DATA} ${COPY} ${COPY2}
123 cmp ${COPY} ${COPY2} >/dev/null && fail "corrupt target"