Added a debug-helping option, --msgs2stderr, than should help all
[rsync/rsync.git] / testsuite / hands.test
1 #!/bin/sh
2
3 # Copyright (C) 1998, 1999 by Philip Hands <phil@hands.com>
4 # Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
5 #
6 # This program is distributable under the terms of the GNU GPL (see COPYING)
7
8 . "$suitedir/rsync.fns"
9
10 hands_setup
11
12 DEBUG_OPTS="--debug=all5,deltasum0 --msgs2stderr"
13
14 # Main script starts here
15
16 runtest "basic operation" 'checkit "$RSYNC -av \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
17
18 ln "$fromdir/filelist" "$fromdir/dir"
19 runtest "hard links" 'checkit "$RSYNC -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
20
21 rm "$todir/text"
22 runtest "one file" 'checkit "$RSYNC -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
23
24 echo "extra line" >> "$todir/text"
25 runtest "extra data" 'checkit "$RSYNC -avH $DEBUG_OPTS --no-whole-file \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
26
27 cp "$fromdir/text" "$todir/ThisShouldGo"
28 runtest " --delete" 'checkit "$RSYNC --delete -avH $DEBUG_OPTS \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'
29
30 cd "$tmpdir"
31 rm -rf to from/*dir
32
33 # Do the real copy, touch up the parent-dir's time, and then check the copy.
34 $RSYNC -av from/* to/
35 checkit "$RSYNC -av --exclude='*' from/ to/" "$fromdir" "$todir"
36
37 # The script would have aborted on error, so getting here means we've won.
38 exit 0