xfstests: 219: fix awk filter for duplicate users
[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 # Something w/ enough data to fill 50M of fs...
34 filler=/lib/modules/
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 . ./common.attr
48
49 # real QA test starts here
50 _supported_fs generic
51 _supported_os Linux
52
53 [ ! -d $filler ] && _notrun "No directory to source files from"
54
55 _require_scratch
56 _require_acls
57
58 echo "*** create filesystem"
59
60 rm -f $seq.full
61 umount $SCRATCH_DEV >/dev/null 2>&1
62 echo "*** MKFS ***"                         >>$seq.full
63 echo ""                                     >>$seq.full
64 let SIZE=50*1024*1024
65 _scratch_mkfs_sized $SIZE                   >>$seq.full 2>&1 \
66         || _fail "mkfs failed"
67 _scratch_mount                              >>$seq.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 $seq.full
75 cp -rf $filler $SCRATCH_MNT/subdir >$seq.full 2>&1
76
77 echo "*** populate filesystem, pass #2" | tee -a $seq.full
78 cp -rf $filler $SCRATCH_MNT/subdir >$seq.full 2>&1
79
80 _check_scratch_fs
81
82 echo "*** all done"
83 rm -f $seq.full
84 status=0
85 exit