From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:41261) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QPuXm-0003BJ-0i for qemu-devel@nongnu.org; Fri, 27 May 2011 06:45:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QPuXl-00058F-5Z for qemu-devel@nongnu.org; Fri, 27 May 2011 06:45:25 -0400 Received: from mail-pv0-f173.google.com ([74.125.83.173]:55721) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QPuXk-00058B-Vk for qemu-devel@nongnu.org; Fri, 27 May 2011 06:45:25 -0400 Received: by pvg3 with SMTP id 3so772472pvg.4 for ; Fri, 27 May 2011 03:45:23 -0700 (PDT) MIME-Version: 1.0 From: Feiran Zheng Date: Fri, 27 May 2011 18:45:03 +0800 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: [Qemu-devel] [PATCH] qemu-iotest: test 005, don't run on raw List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: hch@lst.de Patch on qemu-iotest. 005, test of creating 5TB images, not practical on raw format, so not run on it. Signed-off-by: Fam Zheng --- 005 | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/005 b/005 index 74537db..e086b6f 100755 --- a/005 +++ b/005 @@ -46,7 +46,7 @@ _supported_proto generic _supported_os Linux # vpc is limited to 127GB, so we can't test it here -if [ "$IMGFMT" = "vpc" ]; then +if [ "$IMGFMT" = "vpc" ] || [ "$IMGFMT" = "raw" ]; then _notrun "image format $IMGFMT does not support large image sizes" fi