(jm_PREREQ): Add jm_PREREQ_TEMPNAME.
[coreutils.git] / tests / group-names
blob94a7f79e26d6a7971446ee1ed50a54d8dd783752
1 # -*- sh -*-
2 # Set `groups' to a space-separated list of at least two groups of which
3 # the user is a member.
5 groups=${FETISH_GROUPS-`(id -nG || /usr/xpg4/bin/id -nG) 2>/dev/null`}
6 case "$groups" in
7   *' '*) ;;
8   *) cat <<EOF 1>&2
9 $0: this test requires that you be a member of more than one group,
10 but running \`id -nG' either failed or found just one.  If you really
11 are a member of at least two group, then rerun this test with FETISH_GROUPS
12 set in your environment to the space-separated list of names.  E.g.,
14   env FETISH_GROUPS='users cdrom' make check
16 EOF
17      (exit 77); exit
18      ;;
19 esac