fix typo in location of xfs_support directory.
[xfstests-dev.git] / 067
1 #! /bin/sh
2 # XFS QA Test No. 067
3 # $Id: 067,v 1.1 2002/05/09 05:26:20 tes Exp $
4 #
5 # Test out acl/dacls which fit in shortform in the inode
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=tes@sagan.melbourne.sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=1        # failure is the default!
48 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53 . ./common.attr
54
55 # real QA test starts here
56
57 _notrun "Causes panic - need to investigate"
58
59 _need_to_be_root
60 _acl_requirements
61 _require_scratch
62
63 # set up fs for 1K inodes
64 export MKFS_OPTIONS="-i size=1024"
65 mkfs_xfs $SCRATCH_DEV>>$here/$seq.full  ||\
66     _error "mkfs failed"
67 mount -t xfs $SCRATCH_DEV $SCRATCH_MNT >>$here/$seq.full ||\
68     _error "mount failed"
69 cd $SCRATCH_MNT
70
71 # xfs_growfs -n $SCRATCH_MNT
72
73 echo ""
74 echo "=== Test out large ACLs  ==="
75
76 mkdir largeacldir
77
78 # John Trostel reported probs with going from 20 to 21 aces
79 # 20 ace ACL = 20*12+4 = 244 bytes
80 # 21 ace ACL = 21*12+4 = 256 bytes - too big for shortform
81 # the 21 ace ACL can not be shortform
82 #
83 acl20=`_create_n_aces 20`
84 acl21=`_create_n_aces 21`
85
86 echo "try 20 aces for access acl"
87 chacl $acl20 largeacldir
88 getfacl largeacldir | _filter_aces
89
90 echo "try 20 aces for default acl"
91 chacl -d $acl20 largeacldir
92 getfacl largeacldir | _filter_aces
93
94 echo "try 21 aces for access acl"
95 chacl $acl21 largeacldir
96 getfacl largeacldir | _filter_aces
97
98 echo "try 21 aces for default acl"
99 chacl -d $acl21 largeacldir
100 getfacl largeacldir | _filter_aces
101
102 # success, all done
103 status=0
104 exit