Fix compile w/o openssl; disable sha256 & sha512 for --checksum.
[rsync.git] / testsuite / chgrp.test
blob467d4029f0f89816e1753308380b555c7b98a967
1 #!/bin/sh
3 # Copyright (C) 2002 by Martin Pool <mbp@samba.org>
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
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.
12 . "$suitedir/rsync.fns"
14 # Build some hardlinks
16 mygrps="`rsync_getgroups`" || test_fail "Can't get groups"
17 mkdir "$fromdir"
19 for g in $mygrps; do
20 name="$fromdir/foo-$g"
21 date > "$name"
22 chgrp "$g" "$name" || test_fail "Can't chgrp"
23 done
24 sleep 2
26 checkit "$RSYNC -rtgpvvv '$fromdir/' '$todir/'" "$fromdir" "$todir"
28 # The script would have aborted on error, so getting here means we've won.
29 exit 0