Re-enabled the --copy-dest part of the test.
[rsync/rsync.git] / testsuite / compare-dest.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 # Test rsync handling of the --compare-dest option.
9
10 . "$suitedir/rsync.fns"
11
12 alt1dir="$tmpdir/alt1"
13 alt2dir="$tmpdir/alt2"
14
15 # Build some files/dirs/links to copy
16
17 set -x
18
19 hands_setup
20
21 # Setup the alt and chk dirs
22 $RSYNC -av --include=text --include='*/' --exclude='*' "$fromdir/" "$alt1dir/"
23 $RSYNC -av --include=etc-ltr-list --include='*/' --exclude='*' "$fromdir/" "$alt2dir/"
24
25 sleep 1
26 touch "$fromdir/dir/text"
27
28 $RSYNC -av --exclude=/text --exclude=etc-ltr-list "$fromdir/" "$chkdir/"
29
30 # Let's do it!
31 checkit "$RSYNC -avv --no-whole-file \
32     --compare-dest=\"$alt1dir\" --compare-dest=\"$alt2dir\" \
33     \"$fromdir/\" \"$todir/\"" "$chkdir" "$todir"
34 checkit "$RSYNC -avv --no-whole-file \
35     --copy-dest=\"$alt1dir\" --copy-dest=\"$alt2dir\" \
36     \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
37
38 # The script would have aborted on error, so getting here means we've won.
39 exit 0