summaryrefslogtreecommitdiff
path: root/tests/group-names
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-04-18 23:33:10 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-04-18 23:33:10 +0000
commita57516e20fe715b115b281d46d2370a952973342 (patch)
tree031f33b1362231099af5db861d769338180cb682 /tests/group-names
parentbb40c7aecad9cb4db3174600955fb3ef41de55b4 (diff)
downloadcoreutils-a57516e20fe715b115b281d46d2370a952973342.tar.xz
(COREUTILS_GROUPS): Renamed from FETISH_GROUPS.
Diffstat (limited to 'tests/group-names')
-rw-r--r--tests/group-names11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/group-names b/tests/group-names
index 2bd22b42d..ad4d0abd4 100644
--- a/tests/group-names
+++ b/tests/group-names
@@ -2,16 +2,17 @@
# Set `groups' to a space-separated list of at least two groups of which
# the user is a member.
-groups=${FETISH_GROUPS-`(id -G || /usr/xpg4/bin/id -G) 2>/dev/null`}
+groups=${COREUTILS_GROUPS-`(id -G || /usr/xpg4/bin/id -G) 2>/dev/null`}
case "$groups" in
*' '*) ;;
*) cat <<EOF 1>&2
$0: this test requires that you be a member of more than one group,
-but running \`id -nG' either failed or found just one. If you really
-are a member of at least two group, then rerun this test with FETISH_GROUPS
-set in your environment to the space-separated list of names. E.g.,
+but running \`id -G' either failed or found just one. If you really
+are a member of at least two groups, then rerun this test with
+COREUTILS_GROUPS set in your environment to the space-separated list
+of group names or numbers. E.g.,
- env FETISH_GROUPS='users cdrom' make check
+ env COREUTILS_GROUPS='users cdrom' make check
EOF
(exit 77); exit 77