3 # Copyright (C) 2002 by Martin Pool <mbp@samba.org>
5 # This program is distributable under the terms of the GNU GPL (see
8 # Test that rsync with -gr will preserve groups when the user running
9 # the test is a member of them. Hopefully they're in at least one
12 .
$srcdir/testsuite
/rsync.fns
16 # Build some hardlinks
18 fromdir
="$scratchdir/from"
19 todir
="$scratchdir/to"
21 # TODO: I guess some systems will not have 'id', and therefore we have
22 # to ship or emulate it.
23 mygrps
="`rsync_getgroups`" || fail
"Can't get groups"
28 name
="$fromdir/foo-$g"
30 chgrp
"$g" "$name" || fail
"Can't chgrp"
34 checkit
"$RSYNC -rtgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
37 # last [] may have failed but if we get here then we've won