]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Change chgrp.test to use our getgroups rather than the system's.
authorMartin Pool <mbp@samba.org>
Mon, 25 Mar 2002 03:01:37 +0000 (03:01 +0000)
committerMartin Pool <mbp@samba.org>
Mon, 25 Mar 2002 03:01:37 +0000 (03:01 +0000)
Makefile.in
testsuite/chgrp.test
testsuite/rsync.fns

index 331c00af26c1a36f4b224f755adfb31b74a20866..b6e0350f0667040def03c98ff3a4166f1173558d 100644 (file)
@@ -40,7 +40,7 @@ OBJS=$(OBJS1) $(OBJS2) $(DAEMON_OBJ) $(LIBOBJ) $(ZLIBOBJ) @BUILD_POPT@
 TLS_OBJ = tls.o syscall.o lib/permstring.o 
 
 # Programs we must have to run the test cases
-CHECK_PROGS = rsync tls
+CHECK_PROGS = rsync tls getgroups
 
 # note that the -I. is needed to handle config.h when using VPATH
 .c.o:
@@ -135,14 +135,14 @@ test: check
 # might lose in the future where POSIX diverges from old sh.
 
 check: all $(CHECK_PROGS)
-       POSIXLY_CORRECT=1 TLS=`pwd`/tls rsync_bin=`pwd`/rsync srcdir="$(srcdir)" $(srcdir)/runtests.sh
+       POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bin=`pwd`/rsync srcdir="$(srcdir)" $(srcdir)/runtests.sh
 
 # This does *not* depend on building or installing: you can use it to
 # check a version installed from a binary or some other source tree,
 # if you want.
 
 installcheck: $(CHECK_PROGS)
-       POSIXLY_CORRECT=1 TLS=`pwd`/tls rsync_bin="$(bindir)/rsync" srcdir="$(srcdir)" $(srcdir)/runtests.sh
+       POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bin="$(bindir)/rsync" srcdir="$(srcdir)" $(srcdir)/runtests.sh
 
 # TODO: Add 'dist' target; need to know which files will be included
 
index 8cc89e0469d6d32fd953282e487b20f97d1952c2..33aef14653099c976075eb9074c71f89b089a3a4 100644 (file)
@@ -20,7 +20,7 @@ todir="$scratchdir/to"
 
 # TODO: I guess some systems will not have 'id', and therefore we have
 # to ship or emulate it.
-mygrps="`id -G`" || fail "Can't get groups"
+mygrps="`rsync_getgroups`" || fail "Can't get groups"
 mkdir "$fromdir"
 
 for g in $mygrps
index e7e2e2d7c8b2371f52233359ed5b3db7b08145c9..e7f753a90e7dbf11db09c79d7e1c21e932feb0f6 100644 (file)
@@ -45,7 +45,11 @@ printmsg() {
 
 
 rsync_ls_lR() {
-    find "$@" -print | sort | xargs $TLS
+    find "$@" -print | sort | xargs "$TOOLDIR/tls"
+}
+
+rsync_getgroups() { 
+    "$TOOLDIR/getgroups"
 }