From: Chandan Babu R Date: Fri, 2 Apr 2021 02:49:39 +0000 (+0530) Subject: xfs/529: Execute chown on an existing directory entry X-Git-Tag: v2022.05.01~478 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=f3172bbedcf31d7685098b15407516b82ebad30e;p=xfstests-dev.git xfs/529: Execute chown on an existing directory entry chown command is being executed on $testfile which is actually deleted just before the execution of quota inode extent count overflow test. Hence the test was not getting exercised at all. This commit fixes the bug by using $fillerdir as the target of chown command. Signed-off-by: Chandan Babu R Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/tests/xfs/529 b/tests/xfs/529 index 778f6142..abe5b1e0 100755 --- a/tests/xfs/529 +++ b/tests/xfs/529 @@ -150,7 +150,7 @@ nr_quotas=$((nr_quotas_per_block * nr_blks)) echo "Extend uquota file" for i in $(seq 0 $nr_quotas_per_block $nr_quotas); do - chown $i $testfile >> $seqres.full 2>&1 + chown $i $fillerdir >> $seqres.full 2>&1 [[ $? != 0 ]] && break done