Lines Matching refs:COPY
16 COPY=${OBJ}/copy
18 DIR=${COPY}.dd
19 DIR2=${COPY}.dd2
27 rm -rf ${COPY} ${COPY2} ${DIR} ${DIR2}
33 $SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
34 cmp ${DATA} ${COPY} || fail "corrupted copy"
38 $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed"
39 cmp ${DATA} ${COPY} || fail "corrupted copy"
43 $SCP $scpopts somehost:${DATA} ${COPY} || fail "copy failed"
44 cmp ${DATA} ${COPY} || fail "corrupted copy"
48 cp ${DATA} ${COPY}
49 $SCP $scpopts ${COPY} somehost:${DIR} || fail "copy failed"
50 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
54 cp ${DATA} ${COPY}
55 $SCP $scpopts ${COPY} ${DIR} || fail "copy failed"
56 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
60 cp ${DATA} ${COPY}
61 $SCP $scpopts somehost:${COPY} ${DIR} || fail "copy failed"
62 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
121 echo a > ${COPY}
123 $SCP $scpopts ${DATA} ${COPY} ${COPY2}
124 cmp ${COPY} ${COPY2} >/dev/null && fail "corrupt target"