From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59047) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGi83-0003Pn-V2 for qemu-devel@nongnu.org; Thu, 29 Jan 2015 00:59:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGi7y-000877-4F for qemu-devel@nongnu.org; Thu, 29 Jan 2015 00:58:59 -0500 Received: from e28smtp02.in.ibm.com ([122.248.162.2]:56190) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGi7w-00086A-5C for qemu-devel@nongnu.org; Thu, 29 Jan 2015 00:58:54 -0500 Received: from /spool/local by e28smtp02.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 29 Jan 2015 11:28:47 +0530 Received: from d28relay01.in.ibm.com (d28relay01.in.ibm.com [9.184.220.58]) by d28dlp01.in.ibm.com (Postfix) with ESMTP id DF8E3E0057 for ; Thu, 29 Jan 2015 11:30:05 +0530 (IST) Received: from d28av04.in.ibm.com (d28av04.in.ibm.com [9.184.220.66]) by d28relay01.in.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t0T5wfJD66650146 for ; Thu, 29 Jan 2015 11:28:41 +0530 Received: from d28av04.in.ibm.com (localhost [127.0.0.1]) by d28av04.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t0T5wepv026163 for ; Thu, 29 Jan 2015 11:28:40 +0530 Received: from chenxg-ThinkPad-T440p.cn.ibm.com (chenxg-thinkpad-t440p.cn.ibm.com [9.115.114.109] (may be forged)) by d28av04.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id t0T5wd6a025879 for ; Thu, 29 Jan 2015 11:28:40 +0530 From: Xiao Guang Chen Date: Thu, 29 Jan 2015 13:58:33 +0800 Message-Id: <1422511118-13049-2-git-send-email-chenxg@linux.vnet.ibm.com> In-Reply-To: <1422511118-13049-1-git-send-email-chenxg@linux.vnet.ibm.com> References: <1422511118-13049-1-git-send-email-chenxg@linux.vnet.ibm.com> Subject: [Qemu-devel] [-prfix=PATCH v2 RFC 1/6] qemu-iotests: fix tests 067, 071 and 087 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org From: Xiao Guang Chen Due to no default floppy and cdrom for guests any more, output files for test case 067, 071 and 087 should be editted to make the test pass. Use virtio-blk instead of virtio-blk-pci as the device driver for test 067. For virtio-blk-pci is equal to virt-blk as device driver but other platform such as s390 may not recognize virtio-blk-pci. Reviewed-by: Michael Mueller Signed-off-by: Xiao Guang Chen --- tests/qemu-iotests/067 | 8 ++++---- tests/qemu-iotests/067.out | 26 +++++++++----------------- tests/qemu-iotests/071.out | 12 ++++-------- tests/qemu-iotests/087.out | 18 +++--------------- 4 files changed, 20 insertions(+), 44 deletions(-) diff --git a/tests/qemu-iotests/067 b/tests/qemu-iotests/067 index d025192..6cddf10 100755 --- a/tests/qemu-iotests/067 +++ b/tests/qemu-iotests/067 @@ -56,7 +56,7 @@ echo echo === -drive/-device and device_del === echo -run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk -device virtio-blk-pci,drive=disk,id=virtio0 <