From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60149) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyUAl-0008VF-6I for qemu-devel@nongnu.org; Mon, 06 Aug 2012 16:45:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SyUAj-0004Zw-S9 for qemu-devel@nongnu.org; Mon, 06 Aug 2012 16:45:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49979) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyUAj-0004Z1-LN for qemu-devel@nongnu.org; Mon, 06 Aug 2012 16:45:05 -0400 From: Kevin Wolf Date: Mon, 6 Aug 2012 22:44:46 +0200 Message-Id: <1344285891-6578-8-git-send-email-kwolf@redhat.com> In-Reply-To: <1344285891-6578-1-git-send-email-kwolf@redhat.com> References: <1344285891-6578-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 07/12] qemu-iotests: ignore qemu-img create lazy_refcounts output 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: Stefan Hajnoczi Hide the default lazy_refcounts=off output from qemu-img like we do with other image creation options. This ensures that existing golden outputs continue to pass despite the new option that has been added. Note that this patch applies before the one that actually introduces the lazy_refcounts=on|off option. This ensures git-bisect(1) continues to work. Signed-off-by: Stefan Hajnoczi Signed-off-by: Kevin Wolf --- tests/qemu-iotests/common.rc | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc index 5e3a524..cc4e39b 100644 --- a/tests/qemu-iotests/common.rc +++ b/tests/qemu-iotests/common.rc @@ -113,7 +113,8 @@ _make_test_img() sed -e "s# table_size=0##g" | \ sed -e "s# compat='[^']*'##g" | \ sed -e "s# compat6=off##g" | \ - sed -e "s# static=off##g" + sed -e "s# static=off##g" | \ + sed -e "s# lazy_refcounts=off##g" } _cleanup_test_img() -- 1.7.6.5