Mention smart-make in a comment.
[rsync.git] / testsuite / symlink-ignore.test
blob7055a920f242839910d805edf7f63f1eef6234ff
1 #!/bin/sh
3 # Copyright (C) 2001 by Martin Pool <mbp@samba.org>
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
8 # Test rsync's somewhat over-featured symlink control: the default
9 # behaviour is that symlinks should not be copied at all.
11 . "$suitedir/rsync.fns"
13 build_symlinks || test_fail "failed to build symlinks"
15 # Copy recursively, but without -l or -L or -a, and all the symlinks
16 # should be missing.
17 $RSYNC -r "$fromdir/" "$todir" || test_fail "$RSYNC returned $?"
19 [ -f "$todir/referent" ] || test_fail "referent was not copied"
20 [ -d "$todir/from" ] && test_fail "extra level of directories"
21 if is_a_link "$todir/dangling"; then
22 test_fail "dangling symlink was copied"
25 if is_a_link "$todir/relative"; then
26 test_fail "relative symlink was copied"
29 if is_a_link "$todir/absolute"; then
30 test_fail "absolute symlink was copied"
33 # The script would have aborted on error, so getting here means we've won.
34 exit 0