Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / chmod / equals
1 #!/bin/sh
2 # Make sure chmod mode arguments of the form A=B work properly.
3 # Before fileutils-4.1.2, some of them didn't.
4 # Also, before coreutils-5.3.1, =[ugo] sometimes didn't work.
5
6 # Copyright (C) 2001, 2002, 2004, 2005, 2006 Free Software Foundation,
7 # Inc.
8
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 # 02110-1301, USA.
23
24 if test "$VERBOSE" = yes; then
25   set -x
26   chmod --version
27 fi
28
29 pwd=`pwd`
30 tmp=equals.$$
31 trap 'status=$?; cd "$pwd" && rm -rf $tmp && exit $status' 0
32 trap '(exit $?); exit' 1 2 13 15
33
34 framework_failure=0
35 mkdir $tmp || framework_failure=1
36 cd $tmp || framework_failure=1
37 touch f || framework_failure=1
38
39 if test $framework_failure = 1; then
40   echo "$0: failure in testing framework" 1>&2
41   (exit 1); exit 1
42 fi
43
44 fail=0
45
46 expected_u=-rwx------
47 expected_g=----rwx---
48 expected_o=-------rwx
49
50 for src in u g o; do
51   for dest in u g o; do
52     test $dest = $src && continue
53     chmod a=,$src=rwx,$dest=$src,$src= f || fail=1
54     set _ `ls -l f`; shift; actual_perms=$1
55     expected_perms=`eval 'echo \$expected_'$dest`
56     test "$actual_perms" = "$expected_perms" || fail=1
57   done
58 done
59
60 umask 027
61 chmod a=,u=rwx,=u f || fail=1
62 set _ `ls -l f`; shift; actual_perms=$1
63 test "$actual_perms" = "-rwxr-x---" || fail=1
64
65 (exit $fail); exit $fail