diff mbox

[1/3] xfstests: fix interference output of the balance program in case 265

Message ID 5036DBC8.9000207@cn.fujitsu.com (mailing list archive)
State Not Applicable
Headers show

Commit Message

Miao Xie Aug. 24, 2012, 1:41 a.m. UTC
The balance program of btrfs outputs the result after it is done, but it
will make the test program fail because the test program thinks it is
not the expected result. So we just throw that information away to fix this
problem.

Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
---
 265 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/265 b/265
index 10f214f..ec8410c 100755
--- a/265
+++ b/265
@@ -110,7 +110,7 @@  _test_add()
 	for i in `seq 1 $n`; do
 		btrfs device add ${devs[$i]} $SCRATCH_MNT > /dev/null 2>&1 || _fail "device add failed"
 	done
-	btrfs filesystem balance $SCRATCH_MNT || _fail "balance failed"
+	btrfs filesystem balance $SCRATCH_MNT 1> /dev/null || _fail "balance failed"
 	umount $SCRATCH_MNT
 }
 
@@ -153,7 +153,7 @@  _test_replace()
 	# in some system balance fails if there is no delay (a bug)
 	# putting sleep 10 to work around as of now
 	# sleep 10
-	btrfs fi balance $SCRATCH_MNT || _fail "dev balance failed"
+	btrfs fi balance $SCRATCH_MNT 1> /dev/null || _fail "dev balance failed"
 
 	# cleaup. add the removed disk
 	umount $SCRATCH_MNT