add freeze and dangerous groups
[xfstests-dev.git] / 277
1 #! /bin/bash
2 # FS QA Test No. 277
3 #
4 # Check if ctime update caused by chattr is written to disk
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2011 Fujitsu.  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=lizf@cn.fujitsu.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 status=1        # failure is the default!
31
32 _cleanup()
33 {
34     rm -f $SCRATCH_MNT/tmp*
35 }
36
37 trap "_cleanup ; exit \$status" 0 1 2 3 15
38
39 # get standard environment, filters and checks
40 . ./common.rc
41 . ./common.filter
42
43 # real QA test starts here
44 _supported_fs generic
45 _supported_os Linux
46 _require_scratch
47
48 _scratch_mkfs > /dev/null 2>&1
49 _scratch_mount
50
51 touch $SCRATCH_MNT/tmp
52 _scratch_remount
53 ctime1=`stat -c %z $SCRATCH_MNT/tmp`
54
55 sleep 1
56 chattr +A $SCRATCH_MNT/tmp
57 chattr -A $SCRATCH_MNT/tmp
58 ctime2=`stat -c %z $SCRATCH_MNT/tmp`
59
60 _scratch_remount
61 ctime3=`stat -c %z $SCRATCH_MNT/tmp`
62
63 if [ "$ctime1" == "$ctime2" ]; then
64         echo "error: ctime not updated after chattr"
65 elif [ "$ctime1" == "$ctime3" ]; then
66         echo "error: on disk ctime not updated"
67 else
68         status=0
69 fi
70
71 exit