#! /bin/sh # Copyright (C) 2001 by Martin Pool # This program is distributable under the terms of the GNU GPL (see # COPYING). # Test rsync's somewhat over-featured symlink control: the default # behaviour is that symlinks should not be copied at all. . $srcdir/testsuite/rsync.fns set -x build_symlinks || test_fail "failed to build symlinks" # Copy recursively, but without -l or -L or -a, and all the symlinks # should be missing. "$rsync_bin" -r "$fromdir/" "$todir" || test_fail "rsync returned $?" [ -f "$todir/referent" ] || test_fail "referent was not copied" [ -d "$todir/from" ] && test_fail "extra level of directories" [ -L "$todir/dangling" ] && test_fail "dangling symlink was copied" [ -L "$todir/relative" ] && test_fail "relative symlink was copied" [ -L "$todir/absolute" ] && test_fail "absolute symlink was copied" exit 0 # last [] may have failed but if we get here then we've one