X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/a98cad00ebc2f4395fbd35ab9ea01f239b068e24..8a3d4658eb6beef06c172702b29390c04405f618:/testsuite/rsync.fns diff --git a/testsuite/rsync.fns b/testsuite/rsync.fns index 5010f732..73e36eed 100644 --- a/testsuite/rsync.fns +++ b/testsuite/rsync.fns @@ -47,15 +47,38 @@ runtest() { fi } +# Call this if you want to filter out verbose messages (-v or -vv) from +# the output of an rsync run (whittling the output down to just the file +# messages). This isn't needed if you use -i without -v. +filter_outfile() { + sed -e '/^building file list /d' \ + -e '/^created directory /d' \ + -e '/^done$/d' \ + -e '/ --whole-file$/d' \ + -e '/^total: /d' \ + -e '/^$/,$d' \ + <"$outfile" >"$outfile.new" + mv "$outfile.new" "$outfile" +} + printmsg() { echo "$1" } - rsync_ls_lR() { find "$@" -print | sort | sed 's/ /\\ /g' | xargs "$TOOLDIR/tls" } +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() { "$TOOLDIR/getgroups" }