From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49394) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SufYP-0005eZ-4X for qemu-devel@nongnu.org; Fri, 27 Jul 2012 04:05:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SufYN-00067y-Vf for qemu-devel@nongnu.org; Fri, 27 Jul 2012 04:05:45 -0400 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:48029) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SufYN-00067n-KG for qemu-devel@nongnu.org; Fri, 27 Jul 2012 04:05:43 -0400 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 27 Jul 2012 09:05:42 +0100 Received: from d06av05.portsmouth.uk.ibm.com (d06av05.portsmouth.uk.ibm.com [9.149.37.229]) by d06nrmr1806.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q6R85XCX2490432 for ; Fri, 27 Jul 2012 09:05:33 +0100 Received: from d06av05.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q6R85Xqk031909 for ; Fri, 27 Jul 2012 02:05:33 -0600 From: Stefan Hajnoczi Date: Fri, 27 Jul 2012 09:05:21 +0100 Message-Id: <1343376324-19458-5-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1343376324-19458-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1343376324-19458-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v3 4/7] qemu-iotests: ignore qemu-img create lazy_refcounts output List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Khoa Huynh , Anthony Liguori , 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 --- tests/qemu-iotests/common.rc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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.10.4