Change chgrp.test to use our getgroups rather than the system's.
[rsync/rsync.git] / testsuite / chgrp.test
CommitLineData
238d23d7
MP
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
14set -x
15
16# Build some hardlinks
17
18fromdir="$scratchdir/from"
19todir="$scratchdir/to"
20
69b06c50
MP
21# TODO: I guess some systems will not have 'id', and therefore we have
22# to ship or emulate it.
dfef3f10 23mygrps="`rsync_getgroups`" || fail "Can't get groups"
238d23d7
MP
24mkdir "$fromdir"
25
26for g in $mygrps
27do
28 name="$fromdir/foo-$g"
29 date > "$name"
30 chgrp "$g" "$name" || fail "Can't chgrp"
31done
90d0a8db 32sleep 2
238d23d7 33
90d0a8db 34checkit "rsync -rtgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
238d23d7
MP
35
36exit 0
37# last [] may have failed but if we get here then we've won
38