From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dmitry Monakhov Subject: [PATCH 2/3] xfstests: fix typo in 260'th test Date: Tue, 8 Nov 2011 12:41:54 +0400 Message-ID: <1320741715-32692-2-git-send-email-dmonakhov@openvz.org> References: <1320741715-32692-1-git-send-email-dmonakhov@openvz.org> Cc: hch@lst.de, david@fromorbit.com, Dmitry Monakhov To: linux-fsdevel@vger.kernel.org, xfs@oss.sgi.com Return-path: Received: from mail-bw0-f46.google.com ([209.85.214.46]:57278 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754014Ab1KHImD (ORCPT ); Tue, 8 Nov 2011 03:42:03 -0500 Received: by bke11 with SMTP id 11so173606bke.19 for ; Tue, 08 Nov 2011 00:42:02 -0800 (PST) In-Reply-To: <1320741715-32692-1-git-send-email-dmonakhov@openvz.org> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: 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 --- 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