public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfstests 217: remove file in between mkfs's
@ 2010-06-09  3:28 Eric Sandeen
  2010-06-09 13:25 ` Christoph Hellwig
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Sandeen @ 2010-06-09  3:28 UTC (permalink / raw)
  To: xfs-oss

217 requires a 2G scratch:

_require_fs_space $SCRATCH_MNT 2202000

but as we mkfs different sizes, we actually are filling in the
sparse loopback more and more, and 3.8G isn't enough to contain it.

If we remove & recreate the file between mkfs's it doesn't take
so much space ... I don't think it adds significantly to test time.

Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
---

diff --git a/217 b/217
index 19540ad..ed86a51 100755
--- a/217
+++ b/217
@@ -60,6 +60,9 @@ LOOP_MNT=$SCRATCH_MNT/test_fs_dir
 _do_mkfs()
 {
 	for i in $*; do
+		# make large holey file
+		rm -f $LOOP_DEV
+		$XFS_IO_PROG -f -c "truncate 16383g" $LOOP_DEV
 		echo -n "fssize=${i}g "
 		$MKFS_XFS_PROG -f -b size=4096 -l version=2 \
 			-d name=$LOOP_DEV,size=${i}g |grep log

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-06-09 13:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-09  3:28 [PATCH] xfstests 217: remove file in between mkfs's Eric Sandeen
2010-06-09 13:25 ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox