- Use $suitedir to find rsync.fns.
[rsync/rsync.git] / testsuite / duplicates.test
1 #! /bin/sh
2
3 # Copyright (C) 2002 by Martin Pool <mbp@samba.org>
4
5 # This program is distributable under the terms of the GNU GPL see
6 # COPYING).
7
8 # Test rsync handling of duplicate filenames.  
9
10 # It's quite possible that the user might specify the same source file
11 # more than once on the command line, perhaps through shell variables
12 # or wildcard expansions.  It might cause problems for rsync if the
13 # same name occurred more than once in the file list, because we might
14 # be trying to update the first copy and generate checksums for the
15 # second copy at the same time.  See clean_flist() for the implementation.
16
17 # We don't need to worry about hardlinks or symlinks.  Because we
18 # always rename-and-replace the new copy, they can't affect us.
19
20 # This test is not great, because it is a timing-dependent bug.
21
22 . "$suitedir/rsync.fns"
23
24 set -x
25
26 # Build some hardlinks
27
28 mkdir "$fromdir"
29 name1="$fromdir/name1"
30 name2="$fromdir/name2"
31 echo "This is the file" > "$name1"
32 ln -s "$name1" "$name2" || fail "can't create symlink"
33
34 outfile="$scratchdir/rsync.out"
35
36 checkit "$RSYNC -avv \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir" \
37     | tee "$outfile"
38
39 # Make sure each file was only copied once...
40 if [ `grep -c '^name1$' "$outfile"` != 1 ]
41 then
42     test_fail "name1 was not copied exactly once"
43 fi
44 if [ `grep -c '^name2 -> ' "$outfile"` != 1 ]
45 then
46     test_fail "name2 was not copied exactly once"
47 fi
48
49 # The script would have aborted on error, so getting here means we've won.
50 exit 0