* [PATCH] tests: check backing filesystem can handle large file
@ 2013-11-07 6:35 Andreas Dilger
2013-11-08 0:04 ` Zheng Liu
2013-12-03 5:12 ` Theodore Ts'o
0 siblings, 2 replies; 3+ messages in thread
From: Andreas Dilger @ 2013-11-07 6:35 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4, Andreas Dilger
The new resize tests create 2TB test files, but tmpfs in kernels
before 3.1 have a max file size of 256GB. Ext3 may also have
a size limit for smaller blocksize filesystems.
Fix the resize_test script to verify that $TMPFILE can be resized
to the final test size, and if that fails try creating the file on
the local filesystem instead of in $TMPDIR. If that cannot hold
the large filesystem, skip the test.
Signed-off-by: Andreas Dilger <adilger@dilger.ca>
---
tests/r_64bit_big_expand/script | 8 ++++++--
tests/r_bigalloc_big_expand/script | 8 ++++++--
tests/r_ext4_big_expand/script | 8 ++++++--
tests/scripts/resize_test | 15 +++++++++++++++
4 files changed, 33 insertions(+), 6 deletions(-)
diff --git a/tests/r_64bit_big_expand/script b/tests/r_64bit_big_expand/script
index 3b34a62..51f36e9 100644
--- a/tests/r_64bit_big_expand/script
+++ b/tests/r_64bit_big_expand/script
@@ -10,10 +10,14 @@ E2FSCK=../e2fsck/e2fsck
. $cmd_dir/scripts/resize_test
-if resize_test
-then
+resize_test
+RC=$?
+if [ $RC -eq 0 ]; then
echo "$test_name: $test_description: ok"
touch $test_name.ok
+elif [ $RC -eq 111 ]; then
+ echo "$test_name: $test_description: skipped"
+ touch $test_name.ok
else
echo "$test_name: $test_description: failed"
touch $test_name.failed
diff --git a/tests/r_bigalloc_big_expand/script b/tests/r_bigalloc_big_expand/script
index 2b9cc63..56c8c15 100644
--- a/tests/r_bigalloc_big_expand/script
+++ b/tests/r_bigalloc_big_expand/script
@@ -10,10 +10,14 @@ RESIZE2FS_OPTS=-f
. $cmd_dir/scripts/resize_test
-if resize_test
-then
+resize_test
+RC=$?
+if [ $RC -eq 0 ]; then
echo "$test_name: $test_description: ok"
touch $test_name.ok
+elif [ $RC -eq 111 ]; then
+ echo "$test_name: $test_description: skipped"
+ touch $test_name.ok
else
echo "$test_name: $test_description: failed"
touch $test_name.failed
diff --git a/tests/r_ext4_big_expand/script b/tests/r_ext4_big_expand/script
index fb31d7a..a4f8fe6 100644
--- a/tests/r_ext4_big_expand/script
+++ b/tests/r_ext4_big_expand/script
@@ -10,10 +10,14 @@ E2FSCK=../e2fsck/e2fsck
. $cmd_dir/scripts/resize_test
-if resize_test
-then
+resize_test
+RC=$?
+if [ $RC -eq 0 ]; then
echo "$test_name: $test_description: ok"
touch $test_name.ok
+elif [ $RC -eq 111 ]; then
+ echo "$test_name: $test_description: skipped"
+ touch $test_name.ok
else
echo "$test_name: $test_description: failed"
touch $test_name.failed
diff --git a/tests/scripts/resize_test b/tests/scripts/resize_test
index 964150e..30532a5 100755
--- a/tests/scripts/resize_test
+++ b/tests/scripts/resize_test
@@ -4,6 +4,21 @@ resize_test () {
rm -f $TMPFILE
touch $TMPFILE
+
+# Verify that the $TMP filesystem handles $SIZE_2 sparse files.
+# If that fails, try the local filesystem instead.
+if truncate -s $SIZE_2 $TMPFILE 2> /dev/null; then
+ > $TMPFILE
+else
+ rm $TMPFILE
+ export TMPFILE=$(TMPDIR=. mktemp -t $test_name.XXXXXX.tmp)
+ touch $TMPFILE
+ if ! truncate -s $SIZE_2 $TMPFILE 2> /dev/null; then
+ rm $TMPFILE
+ return 111
+ fi
+fi
+
echo $MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 > $LOG
$MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 >> $LOG
--
1.7.3.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] tests: check backing filesystem can handle large file
2013-11-07 6:35 [PATCH] tests: check backing filesystem can handle large file Andreas Dilger
@ 2013-11-08 0:04 ` Zheng Liu
2013-12-03 5:12 ` Theodore Ts'o
1 sibling, 0 replies; 3+ messages in thread
From: Zheng Liu @ 2013-11-08 0:04 UTC (permalink / raw)
To: Andreas Dilger; +Cc: tytso, linux-ext4
On Wed, Nov 06, 2013 at 11:35:04PM -0700, Andreas Dilger wrote:
> The new resize tests create 2TB test files, but tmpfs in kernels
> before 3.1 have a max file size of 256GB. Ext3 may also have
> a size limit for smaller blocksize filesystems.
>
> Fix the resize_test script to verify that $TMPFILE can be resized
> to the final test size, and if that fails try creating the file on
> the local filesystem instead of in $TMPDIR. If that cannot hold
> the large filesystem, skip the test.
>
> Signed-off-by: Andreas Dilger <adilger@dilger.ca>
I have tested this patch on my sand box against a ext3 file system on
e2fsprogs dir and /tmp dir.
Tested-by: Zheng Liu <wenqing.lz@taobao.com>
Thanks for fixing this,
- Zheng
> ---
> tests/r_64bit_big_expand/script | 8 ++++++--
> tests/r_bigalloc_big_expand/script | 8 ++++++--
> tests/r_ext4_big_expand/script | 8 ++++++--
> tests/scripts/resize_test | 15 +++++++++++++++
> 4 files changed, 33 insertions(+), 6 deletions(-)
>
> diff --git a/tests/r_64bit_big_expand/script b/tests/r_64bit_big_expand/script
> index 3b34a62..51f36e9 100644
> --- a/tests/r_64bit_big_expand/script
> +++ b/tests/r_64bit_big_expand/script
> @@ -10,10 +10,14 @@ E2FSCK=../e2fsck/e2fsck
>
> . $cmd_dir/scripts/resize_test
>
> -if resize_test
> -then
> +resize_test
> +RC=$?
> +if [ $RC -eq 0 ]; then
> echo "$test_name: $test_description: ok"
> touch $test_name.ok
> +elif [ $RC -eq 111 ]; then
> + echo "$test_name: $test_description: skipped"
> + touch $test_name.ok
> else
> echo "$test_name: $test_description: failed"
> touch $test_name.failed
> diff --git a/tests/r_bigalloc_big_expand/script b/tests/r_bigalloc_big_expand/script
> index 2b9cc63..56c8c15 100644
> --- a/tests/r_bigalloc_big_expand/script
> +++ b/tests/r_bigalloc_big_expand/script
> @@ -10,10 +10,14 @@ RESIZE2FS_OPTS=-f
>
> . $cmd_dir/scripts/resize_test
>
> -if resize_test
> -then
> +resize_test
> +RC=$?
> +if [ $RC -eq 0 ]; then
> echo "$test_name: $test_description: ok"
> touch $test_name.ok
> +elif [ $RC -eq 111 ]; then
> + echo "$test_name: $test_description: skipped"
> + touch $test_name.ok
> else
> echo "$test_name: $test_description: failed"
> touch $test_name.failed
> diff --git a/tests/r_ext4_big_expand/script b/tests/r_ext4_big_expand/script
> index fb31d7a..a4f8fe6 100644
> --- a/tests/r_ext4_big_expand/script
> +++ b/tests/r_ext4_big_expand/script
> @@ -10,10 +10,14 @@ E2FSCK=../e2fsck/e2fsck
>
> . $cmd_dir/scripts/resize_test
>
> -if resize_test
> -then
> +resize_test
> +RC=$?
> +if [ $RC -eq 0 ]; then
> echo "$test_name: $test_description: ok"
> touch $test_name.ok
> +elif [ $RC -eq 111 ]; then
> + echo "$test_name: $test_description: skipped"
> + touch $test_name.ok
> else
> echo "$test_name: $test_description: failed"
> touch $test_name.failed
> diff --git a/tests/scripts/resize_test b/tests/scripts/resize_test
> index 964150e..30532a5 100755
> --- a/tests/scripts/resize_test
> +++ b/tests/scripts/resize_test
> @@ -4,6 +4,21 @@ resize_test () {
>
> rm -f $TMPFILE
> touch $TMPFILE
> +
> +# Verify that the $TMP filesystem handles $SIZE_2 sparse files.
> +# If that fails, try the local filesystem instead.
> +if truncate -s $SIZE_2 $TMPFILE 2> /dev/null; then
> + > $TMPFILE
> +else
> + rm $TMPFILE
> + export TMPFILE=$(TMPDIR=. mktemp -t $test_name.XXXXXX.tmp)
> + touch $TMPFILE
> + if ! truncate -s $SIZE_2 $TMPFILE 2> /dev/null; then
> + rm $TMPFILE
> + return 111
> + fi
> +fi
> +
> echo $MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 > $LOG
> $MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 >> $LOG
>
> --
> 1.7.3.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: tests: check backing filesystem can handle large file
2013-11-07 6:35 [PATCH] tests: check backing filesystem can handle large file Andreas Dilger
2013-11-08 0:04 ` Zheng Liu
@ 2013-12-03 5:12 ` Theodore Ts'o
1 sibling, 0 replies; 3+ messages in thread
From: Theodore Ts'o @ 2013-12-03 5:12 UTC (permalink / raw)
To: Andreas Dilger; +Cc: linux-ext4
On Wed, Nov 06, 2013 at 11:35:04PM -0700, Andreas Dilger wrote:
> The new resize tests create 2TB test files, but tmpfs in kernels
> before 3.1 have a max file size of 256GB. Ext3 may also have
> a size limit for smaller blocksize filesystems.
>
> Fix the resize_test script to verify that $TMPFILE can be resized
> to the final test size, and if that fails try creating the file on
> the local filesystem instead of in $TMPDIR. If that cannot hold
> the large filesystem, skip the test.
>
> Signed-off-by: Andreas Dilger <adilger@dilger.ca>
> Tested-by: Zheng Liu <wenqing.lz@taobao.com>
Thanks, applied.
- Ted
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-12-03 5:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-07 6:35 [PATCH] tests: check backing filesystem can handle large file Andreas Dilger
2013-11-08 0:04 ` Zheng Liu
2013-12-03 5:12 ` Theodore Ts'o
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).