X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/c45f3133bc6f75d5cf553809c3d8190e2eaded32..1623ba68891761a3a8d44acf35afeb9d4d5e8ba2:/testsuite/symlink-ignore.test diff --git a/testsuite/symlink-ignore.test b/testsuite/symlink-ignore.test index 65ecaf29..fec89134 100644 --- a/testsuite/symlink-ignore.test +++ b/testsuite/symlink-ignore.test @@ -10,17 +10,20 @@ . $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 $?" -[ -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" +[ -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" -true # last [] may have failed but if we get here then we've one +exit 0 +# last [] may have failed but if we get here then we've one