X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/757287d8a58ee962933a77590117344076237587..7462c6ac39d86cb8252ec47246569e3ddda35b6a:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index 80c218dd..b982461b 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" @@ -65,9 +73,18 @@ printmsg() { echo "$1" } - rsync_ls_lR() { - find "$@" -print | sort | sed 's/ /\\ /g' | xargs "$TOOLDIR/tls" + find "$@" -print | sort | sed 's/ /\\ /g' | xargs "$TOOLDIR/tls" $TLS_ARGS +} + +check_perms() { + perms=`"$TOOLDIR/tls" "$1" | sed 's/^[-d]\(.........\).*/\1/'` + if test $perms = $2; then + return 0 + fi + echo "permissions: $perms on $1" + echo "should be: $2" + test_fail "failed test $3" } rsync_getgroups() { @@ -135,17 +152,17 @@ hands_setup() { #################### # Many machines do not have "mkdir -p", so we have to build up long paths. # How boring. -makepath () { - echo " makepath $1" - p="$1" - ( +makepath() { + for p in "${@}"; do + (echo " makepath $p" + # Absolut Unix. if echo $p | grep '^/' >/dev/null then cd / fi - # This will break if $1 contains a space. + # This will break if $p contains a space. for c in `echo $p | tr '/' ' '` do if [ -d "$c" ] || mkdir "$c" @@ -154,8 +171,8 @@ makepath () { else echo "failed to create $c" >&2; return $? fi - done - ) + done) + done } @@ -215,28 +232,60 @@ build_rsyncd_conf() { port=2612 pidfile="$scratchdir/rsyncd.pid" logfile="$scratchdir/rsyncd.log" + hostname=`uname -n` cat >"$conf" <"$ignore23" <<'EOT' +if "${@}"; then + exit +fi + +ret=$? + +if test $ret = 23; then + exit +fi + +exit $ret +EOT +chmod +x "$ignore23" }