X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/371d1c36b33d89b3a2c0defc0888440e6d18660a..6aaf8d8c1041b524d985bf09b9a3f5e371cf8ac2:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index 6aee8de6..cf4037dd 100644 --- a/testsuite/rsync.fns +++ b/testsuite/rsync.fns @@ -24,6 +24,9 @@ TO=${TMP}/to LOG=${TMP}/log RSYNC="$rsync_bin" +# Berkley's nice. +PATH="$PATH:/usr/ucb" + runtest() { echo $ECHO_N "Test $1: $ECHO_C" if eval "$2" @@ -201,10 +204,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 } @@ -239,5 +244,10 @@ test_xfail() { exit 78 } +# Test whether something is a link, allowing for shell peculiarities +is_a_link() { + test -L "$1" || test -h "$1" || /usr/bin/test -L "$1" || /usr/bin/test -h "$1" +} + # be reproducible umask 077 \ No newline at end of file