generic/405: test mkfs against thin provision device
[xfstests-dev.git] / tests / generic / 079
1 #! /bin/bash
2 # FS QA Test No. 079
3 #
4 # Run the t_immutable test program for immutable/append-only files.
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 timmutable=$here/src/t_immutable
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     echo "*** cleaning up"
39     $timmutable -r $SCRATCH_MNT/$seq
40     _scratch_unmount
41 }
42
43 # get standard environment, filters and checks
44 . ./common/rc
45 . ./common/filter
46 . ./common/attr
47
48 _supported_fs generic
49 _supported_os Linux
50
51 _require_chattr i
52 _require_scratch
53
54 [ -x $timmutable ] || _notrun "t_immutable was not built for this platform"
55
56 # real QA test starts here
57 _scratch_mkfs >/dev/null 2>&1 || _fail "mkfs failed"
58 _scratch_mount || _fail "mount failed"
59
60 echo "*** starting up"
61 $timmutable -c $SCRATCH_MNT/$seq >$tmp.out 2>&1
62 if grep -q -e 'Operation not supported' -e "Inappropriate ioctl" $tmp.out; then
63     rm -f $tmp.out
64     _notrun "Setting immutable/append flag not supported"
65 fi
66 cat $tmp.out
67 rm -f $tmp.out
68 status=$?
69 exit