[PATCH 2/3] xfstests: fix typo in 260'th test

Dmitry Monakhov dmonakhov at openvz.org
Tue Nov 8 02:41:54 CST 2011


dd should not have count argument because it suposed to work untill ENOSPC.
Also it is reasonable to log dd's output, do that for both 269'th and 270'th
tests

Signed-off-by: Dmitry Monakhov <dmonakhov at openvz.org>
---
 269 |    4 ++--
 270 |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/269 b/269
index 61e83ad..206492b 100755
--- a/269
+++ b/269
@@ -53,8 +53,8 @@ _workout()
 	for ((i=0; i < num_iterations; i++))
 	do
 		# File will be opened with O_TRUNC each time
-		dd if=/dev/zero of=$SCRATCH_MNT/SPACE_CONSUMER bs=1M count=1 \
-			> /dev/null 2>&1
+		dd if=/dev/zero of=$SCRATCH_MNT/SPACE_CONSUMER bs=1M \
+			>> $here/$seq.full 2>&1
 		sleep $enospc_time
 	done
 	kill $pid
diff --git a/270 b/270
index ed1e31e..e45029f 100755
--- a/270
+++ b/270
@@ -63,7 +63,7 @@ _workout()
 		# File will be opened with O_TRUNC each time
 		su $qa_user -c "dd if=/dev/zero \
 			of=$SCRATCH_MNT/SPACE_CONSUMER bs=1M " \
-			> /dev/null 2>&1
+			>> $here/$seq.full 2>&1
 		sleep $enospc_time
 	done
 
-- 
1.7.1




More information about the xfs mailing list