Add a test that --group correctly propagates groups of which the local
[rsync/rsync.git] / testsuite / chgrp.test
1 #! /bin/sh
2
3 # Copyright (C) 2002 by Martin Pool <mbp@samba.org>
4
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
7
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
10 # test.
11
12 . $srcdir/testsuite/rsync.fns
13
14 set -x
15
16 # Build some hardlinks
17
18 fromdir="$scratchdir/from"
19 todir="$scratchdir/to"
20
21 mygrps="`groups`" || fail "Can't get groups"
22 mkdir "$fromdir"
23
24 for g in $mygrps
25 do
26     name="$fromdir/foo-$g"
27     date > "$name"
28     chgrp "$g" "$name" || fail "Can't chgrp"
29 done
30
31 checkit "rsync -rgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
32
33 exit 0
34 # last [] may have failed but if we get here then we've won
35