Improved the trailing comment.
[rsync/rsync.git] / testsuite / symlink-ignore.test
CommitLineData
3cd2af41
MP
1#! /bin/sh
2
3# Copyright (C) 2001 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's somewhat over-featured symlink control: the default
9# behaviour is that symlinks should not be copied at all.
10
11. $srcdir/testsuite/rsync.fns
12
19ba7d63
MP
13set -x
14
c45f3133 15build_symlinks || test_fail "failed to build symlinks"
3cd2af41
MP
16
17# Copy recursively, but without -l or -L or -a, and all the symlinks
18# should be missing.
06464f55 19$RSYNC -r "$fromdir/" "$todir" || test_fail "$RSYNC returned $?"
3cd2af41 20
3b18cba8
MP
21[ -f "${todir}/referent" ] || test_fail "referent was not copied"
22[ -d "${todir}/from" ] && test_fail "extra level of directories"
d96d3893 23if is_a_link "${todir}/dangling"
78ece130
MP
24then
25 test_fail "dangling symlink was copied"
26fi
27
d96d3893 28if is_a_link "${todir}/relative"
78ece130
MP
29then
30 test_fail "relative symlink was copied"
31fi
32
d96d3893 33if is_a_link "${todir}/absolute"
78ece130
MP
34then
35 test_fail "absolute symlink was copied"
36fi
60514d45 37
05118158 38# The script would have aborted on error, so getting here means we've won.
60514d45 39exit 0