mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
8469a8c1b3
After GETNEXTQUOTA ioctl being supported, xfs_quota -c "report" always outputs one more quota line about default quota (as project ID 0). In order to fix this problem, xfsprogs has merged commit 3d607a1. Now xfstests face this same problem from this issue. xfs/133 and xfs/134 can't match their golden output, due to this one more line quota report output. So this patch filters this redundant quota info out. There're 3 kinds of xfsprogs: 1. not support GETNEXTQUOTA 2. support GETNEXTQUOTA but not merged commit 3d607a1 3. the latest version supports all The 1st one won't report Project ID 0, the 2nd will report projid 0 info as "(null) 0 0 0 ...", the 3rd will report projid 0 info as "#0 0 0 0 ...". To deal with all of these situations, we will use _filter_quota | grep -v "^#0 \|^(null) " But if someone specifies a name for projid 0, e.g. # cat $projid_file # root:0 I think that means someone wants to deal with it by himself, the common filter won't filter it out. Signed-off-by: Zorro Lang <zlang@redhat.com> Reviewed-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Eryu Guan <eguan@redhat.com>
96 lines
2.3 KiB
Bash
Executable File
96 lines
2.3 KiB
Bash
Executable File
#! /bin/bash
|
|
# FS QA Test 133
|
|
#
|
|
# Test xfs_quota when project names beginning with digits.
|
|
#
|
|
#-----------------------------------------------------------------------
|
|
# Copyright (c) 2015 Red Hat Inc. 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
|
|
#-----------------------------------------------------------------------
|
|
#
|
|
|
|
seq=`basename $0`
|
|
seqres=$RESULT_DIR/$seq
|
|
echo "QA output created by $seq"
|
|
|
|
qa_user=""
|
|
here=`pwd`
|
|
tmp=/tmp/$$
|
|
status=1 # failure is the default!
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
_cleanup()
|
|
{
|
|
cd /
|
|
rm -f $tmp.*
|
|
}
|
|
|
|
# get standard environment, filters and checks
|
|
. ./common/rc
|
|
. ./common/filter
|
|
. ./common/quota
|
|
|
|
# remove previous $seqres.full before test
|
|
rm -f $seqres.full
|
|
|
|
# real QA test starts here
|
|
_supported_fs xfs
|
|
_supported_os Linux
|
|
_require_scratch
|
|
_require_xfs_quota
|
|
|
|
_scratch_mkfs_xfs >/dev/null 2>&1
|
|
|
|
do_project_test()
|
|
{
|
|
local qa_project=123456-project
|
|
local dir=$SCRATCH_MNT/project
|
|
|
|
mkdir $dir 2>/dev/null
|
|
|
|
#project quota files
|
|
cat >$tmp.projects <<EOF
|
|
10:$dir
|
|
EOF
|
|
|
|
cat >$tmp.projid <<EOF
|
|
$qa_project:10
|
|
EOF
|
|
|
|
$XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \
|
|
-c "project -s $qa_project" $SCRATCH_MNT > /dev/null
|
|
|
|
$XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \
|
|
-c "limit -p bsoft=100m bhard=200m $qa_project" $SCRATCH_MNT
|
|
|
|
echo "=== quota command output ==="
|
|
$XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid \
|
|
-c "quota -p -v -b $qa_project" $SCRATCH_MNT | _filter_quota
|
|
|
|
echo "=== report command output ==="
|
|
$XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \
|
|
-c "report -p -N -b" $SCRATCH_MNT | _filter_project_quota
|
|
}
|
|
|
|
# Test project
|
|
_qmount_option "uquota,pquota"
|
|
_qmount
|
|
_require_prjquota $SCRATCH_DEV
|
|
do_project_test
|
|
|
|
# success, all done
|
|
status=0
|
|
exit
|