xfstests: Convert all tests to use /bin/bash
[xfstests-dev.git] / 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 # creator
25 owner=nathans@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1
33 #filler=$here/../../linux
34 filler=/home/fsgqa/isms/2.4.x-xfs
35
36 _cleanup()
37 {
38         cd /
39         echo "*** unmount"
40         umount $SCRATCH_MNT 2>/dev/null
41 }
42 trap "_cleanup; rm -f $tmp.*; exit \$status" 0 1 2 3 15
43
44 # get standard environment, filters and checks
45 . ./common.rc
46 . ./common.filter
47
48 # real QA test starts here
49 _supported_fs xfs
50 _supported_os Linux
51
52 [ ! -d $filler ] && _notrun "No linux directory to source files from"
53
54 _require_scratch
55
56 echo "*** create filesystem"
57
58 rm -f $seq.full
59 umount $SCRATCH_DEV >/dev/null 2>&1
60 echo "*** MKFS ***"                         >>$seq.full
61 echo ""                                     >>$seq.full
62 _scratch_mkfs_xfs -dsize=50m                >>$seq.full 2>&1 \
63         || _fail "mkfs failed"
64 _scratch_mount                              >>$seq.full 2>&1 \
65         || _fail "mount failed"
66 mkdir $SCRATCH_MNT/subdir
67
68 echo "*** set default ACL"
69 setfacl -R -dm u:fsgqa:rwx,g::rwx,o::r-x,m::rwx $SCRATCH_MNT/subdir
70
71 echo "*** populate filesystem, pass #1" | tee -a $seq.full
72 cp -rf $filler $SCRATCH_MNT/subdir >$seq.full 2>&1
73
74 echo "*** populate filesystem, pass #2" | tee -a $seq.full
75 cp -rf $filler $SCRATCH_MNT/subdir >$seq.full 2>&1
76
77 _check_scratch_fs
78
79 echo "*** all done"
80 rm -f $seq.full
81 status=0
82 exit