From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHYJx-0000YQ-Ly for qemu-devel@nongnu.org; Thu, 05 Sep 2013 08:06:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VHYJp-0002Lw-Ss for qemu-devel@nongnu.org; Thu, 05 Sep 2013 08:05:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57826) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHYJp-0002Lf-0w for qemu-devel@nongnu.org; Thu, 05 Sep 2013 08:05:49 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r85C5mri021890 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 5 Sep 2013 08:05:48 -0400 From: Max Reitz Date: Thu, 5 Sep 2013 14:05:14 +0200 Message-Id: <1378382715-28132-3-git-send-email-mreitz@redhat.com> In-Reply-To: <1378382715-28132-1-git-send-email-mreitz@redhat.com> References: <1378382715-28132-1-git-send-email-mreitz@redhat.com> Subject: [Qemu-devel] [PATCH 2/3] qemu-iotests: info-string filter in _img_info List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Stefan Hajnoczi , Max Reitz Filter out additional information specific to the image format provided by qemu-img info in _img_info. Signed-off-by: Max Reitz --- tests/qemu-iotests/common.rc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc index 5e077c3..d2dae4b 100644 --- a/tests/qemu-iotests/common.rc +++ b/tests/qemu-iotests/common.rc @@ -186,7 +186,9 @@ _img_info() -e "s#$TEST_DIR#TEST_DIR#g" \ -e "s#$IMGFMT#IMGFMT#g" \ -e "/^disk size:/ D" \ - -e "/actual-size/ D" + -e "/actual-size/ D" \ + -e "/additional information:/ D" \ + -e "/info-string/ D" } _get_pids_by_name() -- 1.8.3.1