xfstests: Do not allow step to be zero
[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_attrs
56 _require_acls
57 _require_user
58
59 echo "*** create filesystem"
60
61 rm -f $seq.full
62 umount $SCRATCH_DEV >/dev/null 2>&1
63 echo "*** MKFS ***"                         >>$seq.full
64 echo ""                                     >>$seq.full
65 SIZE=`expr 50 \* 1024 \* 1024`
66 _scratch_mkfs_sized $SIZE                   >>$seq.full 2>&1 \
67         || _fail "mkfs failed"
68 _scratch_mount                              >>$seq.full 2>&1 \
69         || _fail "mount failed"
70 mkdir $SCRATCH_MNT/subdir
71
72 echo "*** set default ACL"
73 setfacl -R -dm u:fsgqa:rwx,g::rwx,o::r-x,m::rwx $SCRATCH_MNT/subdir
74
75 echo "*** populate filesystem, pass #1" | tee -a $seq.full
76 cp -rf $filler $SCRATCH_MNT/subdir >$seq.full 2>&1
77
78 echo "*** populate filesystem, pass #2" | tee -a $seq.full
79 cp -rf $filler $SCRATCH_MNT/subdir >$seq.full 2>&1
80
81 _check_scratch_fs
82
83 echo "*** all done"
84 rm -f $seq.full
85 status=0
86 exit