X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/be2f866b4cacadbed2d18bd6b3e23ae0afc04d4e..844f11f284a1b146bab0a96a5af2f920b37cf053:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index 165dfa0c..41f3354b 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 -c "$2"/"$f" "$3"/"$f" || failed=YES + done + echo "-------------" echo "check how the directory listings compare with diff:" echo "" @@ -197,10 +201,12 @@ use chroot = no hosts allow = localhost, 127.0.0.1 log file = $logfile -[test-from] = $scratchdir/daemon-from/ +[test-from] + path = $FROM read only = yes -[test-to] = $scratchdir/daemon-to/ +[test-to] + path = $TO read only = no EOF } @@ -222,6 +228,11 @@ 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.