@@ -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
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(-)