Perhaps Solaris sh wants us to explicitly exit 0, rather than just
[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
c45f3133 13build_symlinks || test_fail "failed to build symlinks"
3cd2af41
MP
14
15# Copy recursively, but without -l or -L or -a, and all the symlinks
16# should be missing.
17"$rsync_bin" -r "$fromdir/" "$todir" || test_fail "rsync returned $?"
18
19[ -e $todir/referent ] || test_fail "referent was not copied"
20[ -e $todir/from ] && test_fail "extra level of directories"
21[ -e $todir/dangling ] && test_fail "dangling symlink was copied"
22[ -e $todir/relative ] && test_fail "relative symlink was copied"
23[ -e $todir/absolute ] && test_fail "absolute symlink was copied"
24
5bc00efe 25exit 0 # last [] may have failed but if we get here then we've one
db843fc1 26