Fix test 094 wrt its xfs_io usage.

Merge of master-melb:xfs-cmds:23143a by kenmcd.
This commit is contained in:
Nathan Scott
2005-07-12 03:45:00 +00:00
parent 8b5b80690a
commit cd78165588
2 changed files with 40 additions and 25 deletions
+36 -21
View File
@@ -4,34 +4,34 @@
# Exercising the inheritable realtime inode bit. # Exercising the inheritable realtime inode bit.
# #
#----------------------------------------------------------------------- #-----------------------------------------------------------------------
# Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved. # Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
# #
# This program is free software; you can redistribute it and/or modify it # This program is free software; you can redistribute it and/or modify it
# under the terms of version 2 of the GNU General Public License as # under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation. # published by the Free Software Foundation.
# #
# This program is distributed in the hope that it would be useful, but # This program is distributed in the hope that it would be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of # WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# #
# Further, this software is distributed without any warranty that it is # Further, this software is distributed without any warranty that it is
# free of the rightful claim of any third person regarding infringement # free of the rightful claim of any third person regarding infringement
# or the like. Any license provided herein, whether implied or # or the like. Any license provided herein, whether implied or
# otherwise, applies only to this software file. Patent licenses, if # otherwise, applies only to this software file. Patent licenses, if
# any, provided herein do not apply to combinations of this program with # any, provided herein do not apply to combinations of this program with
# other software, or any other product whatsoever. # other software, or any other product whatsoever.
# #
# You should have received a copy of the GNU General Public License along # You should have received a copy of the GNU General Public License along
# with this program; if not, write the Free Software Foundation, Inc., 59 # with this program; if not, write the Free Software Foundation, Inc., 59
# Temple Place - Suite 330, Boston MA 02111-1307, USA. # Temple Place - Suite 330, Boston MA 02111-1307, USA.
# #
# Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
# Mountain View, CA 94043, or: # Mountain View, CA 94043, or:
# #
# http://www.sgi.com # http://www.sgi.com
# #
# For further information regarding this notice, see: # For further information regarding this notice, see:
# #
# http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
#----------------------------------------------------------------------- #-----------------------------------------------------------------------
# #
@@ -63,9 +63,24 @@ _require_realtime
_require_scratch _require_scratch
_require_command /usr/sbin/xfs_io _require_command /usr/sbin/xfs_io
_filter_scratch() _filter_realtime_flag()
{ {
sed -e "s,$SCRATCH_MNT,SCRATCH_MNT,g" _test_inode_flag realtime $SCRATCH_MNT/testdir/$1
if [ $? -eq 0 ]; then
echo "--r-- SCRATCH_MNT/testdir/$1"
else
echo "----- SCRATCH_MNT/testdir/$1"
fi
}
_filter_rtinherit_flag()
{
_test_inode_flag rt-inherit $SCRATCH_MNT/testdir
if [ $? -eq 0 ]; then
echo "--t-- SCRATCH_MNT/testdir"
else
echo "----- SCRATCH_MNT/testdir"
fi
} }
_create_scratch() _create_scratch()
@@ -93,20 +108,20 @@ mkdir $SCRATCH_MNT/testdir
# unset inode attribute, create files below and check they're not realtime # unset inode attribute, create files below and check they're not realtime
echo "*** create directory with rtinherit" echo "*** create directory with rtinherit"
$XFS_IO_PROG -r -c 'chattr +R' $SCRATCH_MNT/testdir $XFS_IO_PROG -r -c 'chattr +t' $SCRATCH_MNT/testdir
$XFS_IO_PROG -r -c 'lsattr' $SCRATCH_MNT/testdir | _filter_scratch _filter_rtinherit_flag
echo "*** create child with inherited realtime" echo "*** create child with inherited realtime"
touch $SCRATCH_MNT/testdir/realtime touch $SCRATCH_MNT/testdir/real
$XFS_IO_PROG -r -c 'lsattr' $SCRATCH_MNT/testdir/realtime | _filter_scratch _filter_realtime_flag real
echo "*** remove rtinherit from directory" echo "*** remove rtinherit from directory"
$XFS_IO_PROG -r -c 'chattr -R' $SCRATCH_MNT/testdir $XFS_IO_PROG -r -c 'chattr -t' $SCRATCH_MNT/testdir
$XFS_IO_PROG -r -c 'lsattr' $SCRATCH_MNT/testdir | _filter_scratch _filter_rtinherit_flag
echo "*** create child without inherited realtime" echo "*** create child without inherited realtime"
touch $SCRATCH_MNT/testdir/non-realtime touch $SCRATCH_MNT/testdir/unreal
$XFS_IO_PROG -r -c 'lsattr' $SCRATCH_MNT/testdir/non-realtime | _filter_scratch _filter_realtime_flag unreal
echo "*** done" echo "*** done"
+4 -4
View File
@@ -2,11 +2,11 @@ QA output created by 094
*** mkfs *** mkfs
*** mount *** mount
*** create directory with rtinherit *** create directory with rtinherit
-------R SCRATCH_MNT/testdir --t-- SCRATCH_MNT/testdir
*** create child with inherited realtime *** create child with inherited realtime
r------- SCRATCH_MNT/testdir/realtime --r-- SCRATCH_MNT/testdir/real
*** remove rtinherit from directory *** remove rtinherit from directory
-------- SCRATCH_MNT/testdir ----- SCRATCH_MNT/testdir
*** create child without inherited realtime *** create child without inherited realtime
-------- SCRATCH_MNT/testdir/non-realtime ----- SCRATCH_MNT/testdir/unreal
*** done *** done