Got rid of "set -x" (runtests.sh has a way to set this, if desired).
[rsync.git] / testsuite / merge.test
1 #! /bin/sh
2
3 # Copyright (C) 2004 by Wayne Davison <wayned@samba.org>
4
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
7
8 # Make sure we can merge files from multiple directories into one.
9
10 . "$suitedir/rsync.fns"
11
12 # Build some files/dirs/links to copy
13
14 from1dir="${fromdir}1"
15 from2dir="${fromdir}2"
16 from3dir="${fromdir}3"
17
18 mkdir "$from1dir" "$from2dir" "$from3dir"
19 mkdir "$from2dir"/sub1 "$from3dir"/sub1
20 mkdir "$from3dir"/sub2 "$from1dir"/dir-and-not-dir
21 mkdir "$chkdir" "$chkdir"/sub1 "$chkdir"/sub2 "$chkdir"/dir-and-not-dir
22 echo "one" >"$from1dir"/one
23 cp -p "$from1dir"/one "$from2dir"/one
24 cp -p "$from1dir"/one "$from3dir"/one
25 echo "two" >"$from1dir"/two
26 echo "three" >"$from2dir"/three
27 echo "four" >"$from3dir"/four
28 echo "five" >"$from1dir"/five
29 echo "six" >"$from3dir"/six
30 echo "sub1" >"$from2dir"/sub1/uno
31 cp -p "$from2dir"/sub1/uno "$from3dir"/sub1/uno
32 echo "sub2" >"$from3dir"/sub1/dos
33 echo "sub3" >"$from2dir"/sub1/tres
34 echo "subby" >"$from3dir"/sub2/subby
35 echo "extra" >"$from1dir"/dir-and-not-dir/inside
36 echo "not-dir" >"$from3dir"/dir-and-not-dir
37
38 cp -p "$from1dir"/one "$from1dir"/two "$from2dir"/three "$from3dir"/four "$from1dir"/five "$from3dir"/six "$chkdir"
39 cp -p "$from1dir"/dir-and-not-dir/inside "$chkdir"/dir-and-not-dir
40 cp -p "$from2dir"/sub1/uno "$from3dir"/sub1/dos "$from2dir"/sub1/tres "$chkdir"/sub1
41 cp -p "$from3dir"/sub2/subby "$chkdir"/sub2
42
43 # Get rid of any directory-time differences
44 $RSYNC -av --existing -f 'exclude,! */' "$from1dir/" "$from2dir/"
45 $RSYNC -av --existing -f 'exclude,! */' "$from2dir/" "$from3dir/"
46 $RSYNC -av --existing -f 'exclude,! */' "$from1dir/" "$chkdir/"
47 $RSYNC -av --existing -f 'exclude,! */' "$from3dir/" "$chkdir/"
48
49 checkit "$RSYNC -aHvv \"$from1dir/\" \"$from2dir/\" \"$from3dir/\" \"$todir/\"" "$chkdir" "$todir"
50
51 # The script would have aborted on error, so getting here means we've won.
52 exit 0