X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3cd2af41e48710dbb27af4ebcbe3ca6e7ea7b2de..8a405c6ca15248347b8683184bc7e61f725ed027:/testsuite/symlink-ignore.test diff --git a/testsuite/symlink-ignore.test b/testsuite/symlink-ignore.test index 549e74c1..7bff0410 100644 --- a/testsuite/symlink-ignore.test +++ b/testsuite/symlink-ignore.test @@ -10,16 +10,31 @@ . $srcdir/testsuite/rsync.fns -build_symlinks +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 $?" -[ -e $todir/referent ] || test_fail "referent was not copied" -[ -e $todir/from ] && test_fail "extra level of directories" -[ -e $todir/dangling ] && test_fail "dangling symlink was copied" -[ -e $todir/relative ] && test_fail "relative symlink was copied" -[ -e $todir/absolute ] && test_fail "absolute symlink was copied" +[ -f "${todir}/referent" ] || test_fail "referent was not copied" +[ -d "${todir}/from" ] && test_fail "extra level of directories" +if [ -L "${todir}/dangling" ] +then + test_fail "dangling symlink was copied" +fi + +if [ -L "${todir}/relative" ] +then + test_fail "relative symlink was copied" +fi + +if [ -L "${todir}/absolute" ] +then + test_fail "absolute symlink was copied" +fi + +exit 0 +# last [] may have failed but if we get here then we've one -true # cool