xfs/007: add project quota Q_XQUOTARM test
authorJie Liu <jeff.liu@oracle.com>
Wed, 13 Aug 2014 01:15:46 +0000 (11:15 +1000)
committerDave Chinner <david@fromorbit.com>
Wed, 13 Aug 2014 01:15:46 +0000 (11:15 +1000)
Add test for project quota Q_XQUOTARM operations, update the
golden output file to match the new test output.

Signed-off-by: Jie Liu <jeff.liu@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
tests/xfs/007
tests/xfs/007.out

index 8cc5bf3eb48fb20e5c285b9be15c8b09f313e783..247c5b3e949049d98e65984cc7cc17fbeb1c0790 100755 (executable)
@@ -74,6 +74,30 @@ echo "*** Usage after quotarm ***"
 xfs_db -c "inode $UQUOTINO" -c "p core.nblocks" $SCRATCH_DEV
 xfs_db -c "inode $GQUOTINO" -c "p core.nblocks" $SCRATCH_DEV
 
+_qmount_option "uquota,pquota"
+_qmount
+
+echo "*** umount"
+umount $SCRATCH_MNT
+
+UQUOTINO=`xfs_db -c "sb 0" -c "p" $SCRATCH_DEV | grep uquotino | awk '{print $NF}'`
+PQUOTINO=`xfs_db -c "sb 0" -c "p" $SCRATCH_DEV | grep gquotino | awk '{print $NF}'`
+
+echo "*** Usage before quotarm ***"
+xfs_db -c "inode $UQUOTINO" -c "p core.nblocks" $SCRATCH_DEV
+xfs_db -c "inode $PQUOTINO" -c "p core.nblocks" $SCRATCH_DEV
+
+_qmount
+echo "*** turn off user and project quotas"
+xfs_quota -x -c 'off -up' $SCRATCH_MNT
+xfs_quota -x -c "remove -up" $SCRATCH_MNT
+echo "*** umount"
+umount $SCRATCH_MNT
+
+echo "*** Usage after quotarm ***"
+xfs_db -c "inode $UQUOTINO" -c "p core.nblocks" $SCRATCH_DEV
+xfs_db -c "inode $PQUOTINO" -c "p core.nblocks" $SCRATCH_DEV
+
 # success, all done
 status=0
 exit
index 0fc17aebdd8d003f7ba8e5408de0c2ed992b9936..7c5bff57d9e13672ff54bced8fd71b03b93e3425 100644 (file)
@@ -8,3 +8,12 @@ core.nblocks = 1
 *** Usage after quotarm ***
 core.nblocks = 0
 core.nblocks = 0
+*** umount
+*** Usage before quotarm ***
+core.nblocks = 1
+core.nblocks = 1
+*** turn off user and project quotas
+*** umount
+*** Usage after quotarm ***
+core.nblocks = 0
+core.nblocks = 0