From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40350) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs3t9-0006nj-0l for qemu-devel@nongnu.org; Fri, 30 Oct 2015 03:14:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zs3t5-0007Vg-QC for qemu-devel@nongnu.org; Fri, 30 Oct 2015 03:14:14 -0400 Received: from e23smtp08.au.ibm.com ([202.81.31.141]:57984) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs3t5-0007V9-6V for qemu-devel@nongnu.org; Fri, 30 Oct 2015 03:14:11 -0400 Received: from /spool/local by e23smtp08.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 30 Oct 2015 17:14:08 +1000 Received: from d23relay08.au.ibm.com (d23relay08.au.ibm.com [9.185.71.33]) by d23dlp01.au.ibm.com (Postfix) with ESMTP id 258B82CE8050 for ; Fri, 30 Oct 2015 18:14:06 +1100 (EST) Received: from d23av03.au.ibm.com (d23av03.au.ibm.com [9.190.234.97]) by d23relay08.au.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id t9U7DiFv33489074 for ; Fri, 30 Oct 2015 18:13:52 +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 t9U7DXUV001523 for ; Fri, 30 Oct 2015 18:13:33 +1100 From: Bo Tu Date: Fri, 30 Oct 2015 15:13:06 +0800 Message-Id: <1446189186-23104-4-git-send-email-tubo@linux.vnet.ibm.com> In-Reply-To: <1446189186-23104-1-git-send-email-tubo@linux.vnet.ibm.com> References: <1446189186-23104-1-git-send-email-tubo@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v1 4/4] qemu-iotests: disable VNC server for test 120 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, silbe@linux.vnet.ibm.com, mreitz@redhat.com, armbru@redhat.com, mimu@linux.vnet.ibm.com Ever since qemu-iotest 120 was introduced, its expected output didn't include the output from the built-in VNC server: QA output created by 120 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 QMP_VERSION +VNC server running on `::1:5900' {"return": {}} wrote 65536/65536 bytes at offset 0 64 KiB, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) Since some architectures do not even have a graphical console, we just pass -nographic to avoid the output. Fixes: a68197ff5b11 ("iotests: Add tests for overriding BDRV_O_PROTOCOL") Reviewed-by: Sascha Silbe Signed-off-by: Bo Tu --- tests/qemu-iotests/120 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qemu-iotests/120 b/tests/qemu-iotests/120 index 9f13078..fb69efd 100755 --- a/tests/qemu-iotests/120 +++ b/tests/qemu-iotests/120 @@ -49,7 +49,7 @@ echo "{'execute': 'qmp_capabilities'} {'execute': 'human-monitor-command', 'arguments': {'command-line': 'qemu-io drv \"write -P 42 0 64k\"'}} {'execute': 'quit'}" \ - | $QEMU -qmp stdio -nodefaults \ + | $QEMU -qmp stdio -nodefaults -nographic \ -drive id=drv,if=none,file="$TEST_IMG",driver=raw,file.driver=$IMGFMT \ | _filter_qmp | _filter_qemu_io $QEMU_IO -c 'read -P 42 0 64k' "$TEST_IMG" | _filter_qemu_io -- 2.3.0