summaryrefslogtreecommitdiff
path: root/tests/cp/backup-1
blob: df696af38708316722f092ab763816cd8ba294de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

: ${CP=cp}

suffix=.b
tmp=b1.$$
tmp_backup="$tmp$suffix"
rm -f $tmp

set -e
echo test > $tmp || exit 1

$CP --force --backup --version-control=simple --suffix=$suffix $tmp $tmp \
  || exit 1

test $? = 0 || exit 1

test -f $tmp || exit 1
test -f $tmp_backup || exit 1
cmp $tmp $tmp_backup > /dev/null

exit 0