xfstests: make install support common/ and tests/ dirs
[xfstests-dev.git] / tests / generic / 077
1 #! /bin/bash
2 # FS QA Test No. 077
3 #
4 # Check use of ACLs (extended attributes) on a full filesystem
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2003 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1
32 # Something w/ enough data to fill 50M of fs...
33 filler=/lib/modules/
34
35 _cleanup()
36 {
37         cd /
38         echo "*** unmount"
39         umount $SCRATCH_MNT 2>/dev/null
40 }
41 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
42
43 # get standard environment, filters and checks
44 . ./common/rc
45 . ./common/filter
46 . ./common/attr
47
48 # real QA test starts here
49 _supported_fs generic
50 _supported_os Linux
51
52 [ ! -d $filler ] && _notrun "No directory to source files from"
53
54 _require_attrs
55 _require_acls
56 _require_user
57
58 echo "*** create filesystem"
59
60 rm -f $seqres.full
61 umount $SCRATCH_DEV >/dev/null 2>&1
62 echo "*** MKFS ***"                         >>$seqres.full
63 echo ""                                     >>$seqres.full
64 SIZE=`expr 50 \* 1024 \* 1024`
65 _scratch_mkfs_sized $SIZE                   >>$seqres.full 2>&1 \
66         || _fail "mkfs failed"
67 _scratch_mount                              >>$seqres.full 2>&1 \
68         || _fail "mount failed"
69 mkdir $SCRATCH_MNT/subdir
70
71 echo "*** set default ACL"
72 setfacl -R -dm u:fsgqa:rwx,g::rwx,o::r-x,m::rwx $SCRATCH_MNT/subdir
73
74 echo "*** populate filesystem, pass #1" | tee -a $seqres.full
75 cp -rf $filler $SCRATCH_MNT/subdir >$seqres.full 2>&1
76
77 echo "*** populate filesystem, pass #2" | tee -a $seqres.full
78 cp -rf $filler $SCRATCH_MNT/subdir >$seqres.full 2>&1
79
80 _check_scratch_fs
81
82 echo "*** all done"
83 rm -f $seqres.full
84 status=0
85 exit