From f3172bbedcf31d7685098b15407516b82ebad30e Mon Sep 17 00:00:00 2001 From: Chandan Babu R Date: Fri, 2 Apr 2021 08:19:39 +0530 Subject: [PATCH] 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 --- tests/xfs/529 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5