260: fix dd arguments

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@openvz.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
Dmitry Monakhov
2011-11-08 12:41:54 +04:00
committed by Christoph Hellwig
parent 8e8f546cfa
commit d02aebc9bb
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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
+1 -1
View File
@@ -66,7 +66,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