From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56713) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YIwLN-0007qQ-Di for qemu-devel@nongnu.org; Wed, 04 Feb 2015 04:34:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YIwLB-0003sy-Uf for qemu-devel@nongnu.org; Wed, 04 Feb 2015 04:33:54 -0500 Received: from e23smtp04.au.ibm.com ([202.81.31.146]:37686) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YIwLB-0003s4-2u for qemu-devel@nongnu.org; Wed, 04 Feb 2015 04:33:45 -0500 Received: from /spool/local by e23smtp04.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 4 Feb 2015 19:33:42 +1000 Received: from d23relay10.au.ibm.com (d23relay10.au.ibm.com [9.190.26.77]) by d23dlp01.au.ibm.com (Postfix) with ESMTP id 91EA12CE804E for ; Wed, 4 Feb 2015 20:33:39 +1100 (EST) Received: from d23av03.au.ibm.com (d23av03.au.ibm.com [9.190.234.97]) by d23relay10.au.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t149XVI543516004 for ; Wed, 4 Feb 2015 20:33:39 +1100 Received: from d23av03.au.ibm.com (localhost [127.0.0.1]) by d23av03.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id t149X5bb010727 for ; Wed, 4 Feb 2015 20:33:06 +1100 From: Xiao Guang Chen Date: Wed, 4 Feb 2015 17:32:27 +0800 Message-Id: <1423042352-361-2-git-send-email-chenxg@linux.vnet.ibm.com> In-Reply-To: <1423042352-361-1-git-send-email-chenxg@linux.vnet.ibm.com> References: <1423042352-361-1-git-send-email-chenxg@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH RFC v3 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 Cc: kwolf@redhat.com, armbru@redhat.com, mimu@linux.vnet.ibm.com, mreitz@redhat.com From: Xiao Guang Chen 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 | 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 <