From: Li Zefan Date: Thu, 22 Dec 2011 03:55:03 +0000 (+0800) Subject: 277: new test to verify on disk ctime update for chattr X-Git-Tag: v2022.05.01~3626 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2fa8b274b5a1d61a3132350c2c02b5485ad304c4;p=xfstests-dev.git 277: new test to verify on disk ctime update for chattr We had a bug in btrfs which can be triggered by this test. Signed-off-by: Li Zefan Signed-off-by: Christoph Hellwig --- diff --git a/277 b/277 new file mode 100755 index 00000000..80212144 --- /dev/null +++ b/277 @@ -0,0 +1,71 @@ +#! /bin/bash +# FS QA Test No. 277 +# +# Check if ctime update caused by chattr is written to disk +# +#----------------------------------------------------------------------- +# Copyright (c) 2011 Fujitsu. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# +#----------------------------------------------------------------------- +# +# creator +owner=lizf@cn.fujitsu.com + +seq=`basename $0` +echo "QA output created by $seq" + +status=1 # failure is the default! + +_cleanup() +{ + rm -f $SCRATCH_MNT/tmp* +} + +trap "_cleanup ; exit \$status" 0 1 2 3 15 + +# get standard environment, filters and checks +. ./common.rc +. ./common.filter + +# real QA test starts here +_supported_fs generic +_supported_os Linux +_require_scratch + +_scratch_mkfs > /dev/null 2>&1 +_scratch_mount + +touch $SCRATCH_MNT/tmp +_scratch_remount +ctime1=`stat -c %z $SCRATCH_MNT/tmp` + +sleep 1 +chattr +A $SCRATCH_MNT/tmp +chattr -A $SCRATCH_MNT/tmp +ctime2=`stat -c %z $SCRATCH_MNT/tmp` + +_scratch_remount +ctime3=`stat -c %z $SCRATCH_MNT/tmp` + +if [ "$ctime1" == "$ctime2" ]; then + echo "error: ctime not updated after chattr" +elif [ "$ctime1" == "$ctime3" ]; then + echo "error: on disk ctime not updated" +else + status=0 +fi + +exit diff --git a/277.out b/277.out new file mode 100644 index 00000000..9614b161 --- /dev/null +++ b/277.out @@ -0,0 +1 @@ +QA output created by 277 diff --git a/group b/group index dd9f00d0..99592d37 100644 --- a/group +++ b/group @@ -390,3 +390,4 @@ deprecated 274 auto rw 275 auto rw 276 auto rw metadata +277 auto ioctl quick metadata