X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d1798a2fda20876febfecdc035510a0dd9875761..d724dd186ed6a2d66fa13a9357ce91e459d39e8c:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index 5c35004b..de628665 100644 --- a/testsuite/rsync.fns +++ b/testsuite/rsync.fns @@ -23,6 +23,11 @@ fromdir="$tmpdir/from" todir="$tmpdir/to" chkdir="$tmpdir/chk" +# For itemized output: +all_plus='+++++++++' +allspace=' ' +dots='.....' # trailing dots after changes + # Berkley's nice. PATH="$PATH:/usr/ucb" @@ -52,10 +57,13 @@ runtest() { # messages). This isn't needed if you use -i without -v. filter_outfile() { sed -e '/^building file list /d' \ + -e '/^sending incremental file list/d' \ -e '/^created directory /d' \ -e '/^done$/d' \ -e '/ --whole-file$/d' \ -e '/^total: /d' \ + -e '/^client charset: /d' \ + -e '/^server charset: /d' \ -e '/^$/,$d' \ <"$outfile" >"$outfile.new" mv "$outfile.new" "$outfile" @@ -231,7 +239,8 @@ build_rsyncd_conf() { pid file = $pidfile use chroot = no -hosts allow = localhost 127.0.0.1 $hostname +munge symlinks = no +hosts allow = localhost 127.0.0.0/24 192.168.0.0/16 10.0.0.0/8 $hostname log file = $logfile log format = %i %h [%a] %m (%u) %l %f%L transfer logging = yes @@ -252,6 +261,25 @@ gid = 0 path = $scratchdir read only = no EOF + + # Build a helper script to ignore exit code 23 + ignore23="$scratchdir/ignore23" + echo "building help script $ignore23" + + cat >"$ignore23" <<'EOT' +if "${@}"; then + exit +fi + +ret=$? + +if test $ret = 23; then + exit +fi + +exit $ret +EOT +chmod +x "$ignore23" }