2 # Make sure "chown USER:GROUP FILE" works, and similar tests with separators.
4 # Copyright (C) 2004-2009 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 if test "$VERBOSE" = yes; then
26 id_u
=`id -u` || framework_failure
27 test -n "$id_u" || framework_failure
29 id_un
=`id -un` || framework_failure
30 test -n "$id_un" || framework_failure
32 id_g
=`id -g` || framework_failure
33 test -n "$id_g" || framework_failure
35 id_gn
=`id -gn` || framework_failure
36 test -n "$id_gn" || framework_failure
38 # FreeBSD 6.x's getgrnam fails to look up a group name containing
39 # a space. On such a system, skip this test if the group name contains
40 # a byte not in the portable filename character set.
44 *[^a-zA-Z0-9._-
]*) skip_test_
"invalid group name: $id_gn";;
53 for u
in $id_u "$id_un" ''; do
54 for g
in $id_g "$id_gn" ''; do
61 [0-9]*$sep) chown
"$u$sep$g" .
2> /dev
/null
&& fail
=1 ;;
62 *) chown
"$u$sep$g" . || fail
=1 ;;