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
+26 -11
View File
@@ -4,7 +4,7 @@
# 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
# under the terms of version 2 of the GNU General Public License as
@@ -63,9 +63,24 @@ _require_realtime
_require_scratch
_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()
@@ -93,20 +108,20 @@ mkdir $SCRATCH_MNT/testdir
# unset inode attribute, create files below and check they're not realtime
echo "*** create directory with rtinherit"
$XFS_IO_PROG -r -c 'chattr +R' $SCRATCH_MNT/testdir
$XFS_IO_PROG -r -c 'lsattr' $SCRATCH_MNT/testdir | _filter_scratch
$XFS_IO_PROG -r -c 'chattr +t' $SCRATCH_MNT/testdir
_filter_rtinherit_flag
echo "*** create child with inherited realtime"
touch $SCRATCH_MNT/testdir/realtime
$XFS_IO_PROG -r -c 'lsattr' $SCRATCH_MNT/testdir/realtime | _filter_scratch
touch $SCRATCH_MNT/testdir/real
_filter_realtime_flag real
echo "*** remove rtinherit from directory"
$XFS_IO_PROG -r -c 'chattr -R' $SCRATCH_MNT/testdir
$XFS_IO_PROG -r -c 'lsattr' $SCRATCH_MNT/testdir | _filter_scratch
$XFS_IO_PROG -r -c 'chattr -t' $SCRATCH_MNT/testdir
_filter_rtinherit_flag
echo "*** create child without inherited realtime"
touch $SCRATCH_MNT/testdir/non-realtime
$XFS_IO_PROG -r -c 'lsattr' $SCRATCH_MNT/testdir/non-realtime | _filter_scratch
touch $SCRATCH_MNT/testdir/unreal
_filter_realtime_flag unreal
echo "*** done"
+4 -4
View File
@@ -2,11 +2,11 @@ QA output created by 094
*** mkfs
*** mount
*** create directory with rtinherit
-------R SCRATCH_MNT/testdir
--t-- SCRATCH_MNT/testdir
*** create child with inherited realtime
r------- SCRATCH_MNT/testdir/realtime
--r-- SCRATCH_MNT/testdir/real
*** remove rtinherit from directory
-------- SCRATCH_MNT/testdir
----- SCRATCH_MNT/testdir
*** create child without inherited realtime
-------- SCRATCH_MNT/testdir/non-realtime
----- SCRATCH_MNT/testdir/unreal
*** done