Use newer trap and tmpdir-creation framework.
[coreutils.git] / tests / group-names
blobad4d0abd439c067dac30206ae378c2c74385bd9e
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=${COREUTILS_GROUPS-`(id -G || /usr/xpg4/bin/id -G) 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 -G' either failed or found just one.  If you really
11 are a member of at least two groups, then rerun this test with
12 COREUTILS_GROUPS set in your environment to the space-separated list
13 of group names or numbers.  E.g.,
15   env COREUTILS_GROUPS='users cdrom' make check
17 EOF
18      (exit 77); exit 77
19      ;;
20 esac