X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/cf72f20426c4b6c9c2467185f85e09e0028d39b6..d58e4c273c6a8d770c4e0cd80d5f1b70270eb229:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index 2d27a8c3..1e9e8193 100644 --- a/testsuite/rsync.fns +++ b/testsuite/rsync.fns @@ -150,7 +150,11 @@ checkit() { echo "-------------" echo "check how the files compare with diff:" echo "" - diff -cr $2 $3 || failed=YES + for f in `cd "$2"; find . -type f -print ` + do + diff -u "$2"/"$f" "$3"/"$f" || failed=YES + done + echo "-------------" echo "check how the directory listings compare with diff:" echo "" @@ -222,5 +226,18 @@ test_fail() { exit 1 } +test_skipped() { + echo "$@" >&2 + exit 77 +} + +# It failed, but we expected that. don't dump out error logs, +# because most users won't want to see them. But do leave +# the working directory around. +test_xfail() { + echo "$@" >&2 + exit 78 +} + # be reproducible umask 077 \ No newline at end of file