From: Jan Kara <jack@suse.cz>
To: xfs@oss.sgi.com
Cc: Jan Kara <jack@suse.cz>
Subject: [PATCH] xfstests: Improve test 219 to work with different filesystems
Date: Thu, 19 May 2011 13:47:55 +0200 [thread overview]
Message-ID: <1305805675-13753-1-git-send-email-jack@suse.cz> (raw)
Different filesystems account different amount of metadata in quota. Thus it is
impractical to check for a particular amount of space occupied by a file
because there is no right value. Change the test to verify whether the amount
of space is between the expected amount of space and the expected amount +5%.
The number of files is checked exactly as previously.
Signed-off-by: Jan Kara <jack@suse.cz>
---
219 | 25 +++++++++++++++++++++++--
1 files changed, 23 insertions(+), 2 deletions(-)
Dave, does this look better?
diff --git a/219 b/219
index 836d703..ad4e64d 100755
--- a/219
+++ b/219
@@ -58,6 +58,23 @@ test_files()
done
}
+check_usage()
+{
+ wroteblocks=$1
+ wrotefiles=$2
+ read id exceed blocks bsoft bhard inodes isoft ihard
+ if [ "$blocks" -lt "$wroteblocks" ]; then
+ echo "Too few blocks used (type=$type)"
+ # Save 5% for overhead of metadata or different block size
+ elif [ "$blocks" -gt $((wroteblocks+wroteblocks/20)) ]; then
+ echo "Too many blocks used (type=$type)"
+ elif [ "$inodes" != "$wrotefiles" ]; then
+ echo "Bad number of inodes used (type=$type)"
+ else
+ echo "Usage OK (type=$type)"
+ fi
+}
+
test_accounting()
{
echo "### some controlled buffered, direct and mmapd IO (type=$type)"
@@ -77,8 +94,12 @@ test_accounting()
$here/src/lstat64 $file | head -3 | _filter_scratch
done
- repquota -$type -n $SCRATCH_MNT | grep -v "^#0" | _filter_scratch |
- awk '/^#/ { if (seen[$1]) next; seen[$1]++; } { print; }'
+ if [ $type == 'u' ]; then
+ id=$uid
+ else
+ id=$gid
+ fi
+ repquota -$type -n $SCRATCH_MNT | grep "^#$id" | check_usage 144 3
}
# real QA test starts here
--
1.7.1
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next reply other threads:[~2011-05-19 11:48 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-19 11:47 Jan Kara [this message]
2011-06-03 11:27 ` [PATCH] xfstests: Improve test 219 to work with different filesystems Jan Kara
2011-06-03 15:25 ` Alex Elder
2011-06-03 17:34 ` Jan Kara
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1305805675-13753-1-git-send-email-jack@suse.cz \
--to=jack@suse.cz \
--cc=xfs@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox