X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/800a4485f3148765bca7cbc5d3f61be2cc7af276..d1c06c2180f337deaa059fc408fcca4f4770a585:/testsuite/daemon.test diff --git a/testsuite/daemon.test b/testsuite/daemon.test index 54865053..439b8835 100644 --- a/testsuite/daemon.test +++ b/testsuite/daemon.test @@ -24,8 +24,29 @@ . "$suitedir/rsync.fns" +SSH="$scratchdir/pretend-ssh" + +cat >"$SSH" <<'EOT' +while : ; do + case "$1" in + -*) shift ;; + localhost) shift; break ;; + *) exit 1 ;; + esac +done + +eval "${@}" +EOT +chmod +x "$SSH" + build_rsyncd_conf +cd "$scratchdir" + +ln -s test-rsyncd.conf rsyncd.conf + +$RSYNC -ve $SSH --rsync-path="$RSYNC" localhost:: + RSYNC_CONNECT_PROG="$RSYNC --config=$conf --daemon" export RSYNC_CONNECT_PROG