From: Mark Fasheh <mfasheh@suse.de>
To: fstests@vger.kernel.org
Subject: [PATCH] btrfs/149: don't run if PAGE_SIZE > 4096
Date: Fri, 22 Jun 2018 23:38:43 +0200 [thread overview]
Message-ID: <20180622213843.GF28053@wotan.suse.de> (raw)
The test assumes a 4K block size and fails on larger block sizes - the
extent layout will not match and the reflink command will fail.
Signed-off-by: Mark Fasheh <mfasheh@suse.de>
---
tests/btrfs/149 | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tests/btrfs/149 b/tests/btrfs/149
index 3e955a30..64bc8ac3 100755
--- a/tests/btrfs/149
+++ b/tests/btrfs/149
@@ -37,6 +37,12 @@ _require_scratch
_require_scratch_reflink
_require_odirect
+# Test output will not match results if page size > 4096
+PAGE_SIZE=`getconf PAGE_SIZE`
+if [ $PAGE_SIZE -gt 4096 ]; then
+ _notrun "Not supported with page size > 4096"
+fi
+
send_files_dir=$TEST_DIR/btrfs-test-$seq
rm -f $seqres.full
--
2.15.1
next reply other threads:[~2018-06-22 21:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-22 21:38 Mark Fasheh [this message]
2018-06-22 22:16 ` [PATCH] btrfs/149: don't run if PAGE_SIZE > 4096 Dave Chinner
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=20180622213843.GF28053@wotan.suse.de \
--to=mfasheh@suse.de \
--cc=fstests@vger.kernel.org \
/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