Change chgrp.test to use our getgroups rather than the system's.
[rsync/rsync.git] / testsuite / chgrp.test
index 179d789..33aef14 100644 (file)
@@ -18,7 +18,9 @@ set -x
 fromdir="$scratchdir/from"
 todir="$scratchdir/to"
 
-mygrps="`groups`" || fail "Can't get groups"
+# TODO: I guess some systems will not have 'id', and therefore we have
+# to ship or emulate it.
+mygrps="`rsync_getgroups`" || fail "Can't get groups"
 mkdir "$fromdir"
 
 for g in $mygrps
@@ -27,8 +29,9 @@ do
     date > "$name"
     chgrp "$g" "$name" || fail "Can't chgrp"
 done
+sleep 2
 
-checkit "rsync -rgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
+checkit "rsync -rtgvvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
 
 exit 0
 # last [] may have failed but if we get here then we've won