From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35950) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJDN8-0004pr-Qv for qemu-devel@nongnu.org; Wed, 04 Feb 2015 22:44:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YJDN1-00036f-3t for qemu-devel@nongnu.org; Wed, 04 Feb 2015 22:44:54 -0500 Received: from e28smtp09.in.ibm.com ([122.248.162.9]:41657) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJDN0-00036H-FX for qemu-devel@nongnu.org; Wed, 04 Feb 2015 22:44:47 -0500 Received: from /spool/local by e28smtp09.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 5 Feb 2015 09:14:44 +0530 Received: from d28relay04.in.ibm.com (d28relay04.in.ibm.com [9.184.220.61]) by d28dlp03.in.ibm.com (Postfix) with ESMTP id 06C2A1258044 for ; Thu, 5 Feb 2015 09:15:44 +0530 (IST) Received: from d28av03.in.ibm.com (d28av03.in.ibm.com [9.184.220.65]) by d28relay04.in.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t153ie5m59244642 for ; Thu, 5 Feb 2015 09:14:40 +0530 Received: from d28av03.in.ibm.com (localhost [127.0.0.1]) by d28av03.in.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t153ie1x016685 for ; Thu, 5 Feb 2015 09:14:40 +0530 From: Xiao Guang Chen Date: Thu, 5 Feb 2015 11:44:29 +0800 Message-Id: <1423107872-3268-4-git-send-email-chenxg@linux.vnet.ibm.com> In-Reply-To: <1423107872-3268-1-git-send-email-chenxg@linux.vnet.ibm.com> References: <1423107872-3268-1-git-send-email-chenxg@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH RFC v4 3/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 Cc: kwolf@redhat.com, armbru@redhat.com, mimu@linux.vnet.ibm.com, mreitz@redhat.com Update the output files for test case 067, 071 and 087 because qemu option -nodefaults was used to start a guest so there are no default floppy and cdrom for guests any more. Use virtio-blk instead of virtio-blk-pci as the device driver for test case 067. For virtio-blk-pci is the same with virtio-blk as device driver but other platform such as s390 may not recognize the virtio-blk-pci. Reviewed-by: Michael Mueller Signed-off-by: Xiao Guang Chen --- tests/qemu-iotests/067 | 8 +- tests/qemu-iotests/067.out | 266 +-------------------------------------------- tests/qemu-iotests/071.out | 4 - tests/qemu-iotests/087.out | 12 -- 4 files changed, 5 insertions(+), 285 deletions(-) diff --git a/tests/qemu-iotests/067 b/tests/qemu-iotests/067 index 0508c69..d979645 100755 --- a/tests/qemu-iotests/067 +++ b/tests/qemu-iotests/067 @@ -57,7 +57,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 <