X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/8fef0245283dadaa2d6b86096b13c78bfcae0b34..9793bbb3646cbaa816d074dc925a4f4f7d40089f:/testsuite/daemon.test diff --git a/testsuite/daemon.test b/testsuite/daemon.test index 8b1cab1a..439b8835 100644 --- a/testsuite/daemon.test +++ b/testsuite/daemon.test @@ -24,8 +24,30 @@ . "$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 -export RSYNC_CONNECT_PROG="$rsync_bin --config=$conf --daemon" +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 -$rsync_bin -v localhost:: +$RSYNC -v localhost::