From patchwork Wed Sep 25 01:14:34 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fam Zheng X-Patchwork-Id: 277652 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 76DD52C0086 for ; Wed, 25 Sep 2013 11:16:14 +1000 (EST) Received: from localhost ([::1]:49037 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VOdi8-0004y7-AU for incoming@patchwork.ozlabs.org; Tue, 24 Sep 2013 21:16:12 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57620) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VOdgn-0003HS-Ir for qemu-devel@nongnu.org; Tue, 24 Sep 2013 21:14:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VOdgf-0005pj-Sx for qemu-devel@nongnu.org; Tue, 24 Sep 2013 21:14:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:6410) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VOdgf-0005pe-LT for qemu-devel@nongnu.org; Tue, 24 Sep 2013 21:14:41 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r8P1Ef76028280 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 24 Sep 2013 21:14:41 -0400 Received: from T430s.nay.redhat.com ([10.66.6.118]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r8P1EYL5026269; Tue, 24 Sep 2013 21:14:39 -0400 From: Fam Zheng To: qemu-devel@nongnu.org Date: Wed, 25 Sep 2013 09:14:34 +0800 Message-Id: <1380071674-11176-3-git-send-email-famz@redhat.com> In-Reply-To: <1380071674-11176-1-git-send-email-famz@redhat.com> References: <1379990464-2721-1-git-send-email-famz@redhat.com> <1380071674-11176-1-git-send-email-famz@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: kwolf@redhat.com, stefanha@redhat.com Subject: [Qemu-devel] [PATCH v2 2/2] qemu-iotests: add monolithicFlat creation test to 059 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Fam Zheng --- tests/qemu-iotests/059 | 5 +++++ tests/qemu-iotests/059.out | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/tests/qemu-iotests/059 b/tests/qemu-iotests/059 index b03429d..4bab098 100755 --- a/tests/qemu-iotests/059 +++ b/tests/qemu-iotests/059 @@ -66,6 +66,11 @@ poke_file "$TEST_IMG" "$capacity_offset" "\xff\xff\xff\xff" poke_file "$TEST_IMG" "$grain_table_size_offset" "\x01\x00\x00\x00" { $QEMU_IO -c "read 0 512" $TEST_IMG; } 2>&1 | _filter_qemu_io | _filter_testdir +echo "=== Testing monolithicFlat creation and opening ===" +echo +IMGOPTS="subformat=monolithicFlat" _make_test_img 64M +$QEMU_IMG info $TEST_IMG + # success, all done echo "*** done" rm -f $seq.full diff --git a/tests/qemu-iotests/059.out b/tests/qemu-iotests/059.out index 2146a1a..9b064b8 100644 --- a/tests/qemu-iotests/059.out +++ b/tests/qemu-iotests/059.out @@ -17,4 +17,11 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 L1 size too big qemu-io: can't open device TEST_DIR/t.vmdk: Could not open 'TEST_DIR/t.vmdk': Wrong medium type no file open, try 'help open' +=== Testing monolithicFlat creation and opening === + +Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=67108864 +image: /home/fam/qemu/tests/qemu-iotests/scratch/t.vmdk +file format: vmdk +virtual size: 64M (67108864 bytes) +disk size: 4.0K *** done