From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60903) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SPdAB-0005rg-BZ for qemu-devel@nongnu.org; Wed, 02 May 2012 13:16:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SPdA8-0004Mh-PR for qemu-devel@nongnu.org; Wed, 02 May 2012 13:16:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58096) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SPdA8-0004Lb-HP for qemu-devel@nongnu.org; Wed, 02 May 2012 13:16:24 -0400 From: Kevin Wolf Date: Wed, 2 May 2012 19:16:10 +0200 Message-Id: <1335978978-4940-2-git-send-email-kwolf@redhat.com> In-Reply-To: <1335978978-4940-1-git-send-email-kwolf@redhat.com> References: <1335978978-4940-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 1/9] qemu-iotests: ignore fragmentation information for qed List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Dong Xu Wang We added image fragmentation statistics functions to qemu-img several days ago, those patches will cause "./check -qed" failed. This patch will ignore fragmentation statistics information of qed format, and then "./check -qed" will work. Signed-off-by: Dong Xu Wang Signed-off-by: Kevin Wolf --- tests/qemu-iotests/common.rc | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc index 4bc7420..e535874 100644 --- a/tests/qemu-iotests/common.rc +++ b/tests/qemu-iotests/common.rc @@ -130,6 +130,7 @@ _cleanup_test_img() _check_test_img() { $QEMU_IMG check -f $IMGFMT $TEST_IMG 2>&1 | \ + grep -v "fragmented$" | \ sed -e 's/qemu-img\: This image format does not support checks/No errors were found on the image./' } -- 1.7.6.5