From patchwork Sun Jan 5 17:21:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Lieven X-Patchwork-Id: 307002 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)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 0F03E2C00C6 for ; Mon, 6 Jan 2014 04:58:59 +1100 (EST) Received: from localhost ([::1]:58759 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VzrTN-0004U2-V0 for incoming@patchwork.ozlabs.org; Sun, 05 Jan 2014 12:26:49 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53968) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VzrR1-0000tY-Gd for qemu-devel@nongnu.org; Sun, 05 Jan 2014 12:24:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VzrQv-0002td-TF for qemu-devel@nongnu.org; Sun, 05 Jan 2014 12:24:23 -0500 Received: from mx.ipv6.kamp.de ([2a02:248:0:51::16]:46594 helo=mx01.kamp.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VzrQv-0002tR-Ji for qemu-devel@nongnu.org; Sun, 05 Jan 2014 12:24:17 -0500 Received: (qmail 32491 invoked by uid 89); 5 Jan 2014 17:24:14 -0000 Received: from [82.141.1.145] by client-16-kamp (envelope-from , uid 89) with qmail-scanner-2010/03/19-MF (clamdscan: 0.98/18317. hbedv: 8.2.12.166/7.11.123.168. spamassassin: 3.3.1. Clear:RC:1(82.141.1.145):SA:0(-1.2/5.0):. Processed in 11.513134 secs); 05 Jan 2014 17:24:14 -0000 Received: from ns.kamp-intra.net (HELO dns.kamp-intra.net) ([82.141.1.145]) by mx01.kamp.de with SMTP; 5 Jan 2014 17:24:02 -0000 X-GL_Whitelist: yes Received: from lieven-pc.kamp-intra.net (lieven-pc.kamp-intra.net [172.21.12.60]) by dns.kamp-intra.net (Postfix) with ESMTP id 43FA0206B0; Sun, 5 Jan 2014 18:20:40 +0100 (CET) Received: by lieven-pc.kamp-intra.net (Postfix, from userid 1000) id BED3F611B3; Sun, 5 Jan 2014 18:22:17 +0100 (CET) From: Peter Lieven To: qemu-devel@nongnu.org Date: Sun, 5 Jan 2014 18:21:58 +0100 Message-Id: <1388942528-10453-9-git-send-email-pl@kamp.de> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1388942528-10453-1-git-send-email-pl@kamp.de> References: <1388942528-10453-1-git-send-email-pl@kamp.de> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a02:248:0:51::16 Cc: Kevin Wolf , Fam Zheng , ronniesahlberg@gmail.com, Jeff Cody , Peter Lieven , Max Reitz , owasserm@redhat.com, Federico Simoncelli , Stefan Hajnoczi , Wenchao Xia Subject: [Qemu-devel] [PATCHv2 08/18] qemu-iotests: fix test 020 to work with any protocol 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: Peter Lieven --- tests/qemu-iotests/020 | 24 +++++++++++------------- tests/qemu-iotests/020.out | 2 +- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/tests/qemu-iotests/020 b/tests/qemu-iotests/020 index a42f32f..55358ac 100755 --- a/tests/qemu-iotests/020 +++ b/tests/qemu-iotests/020 @@ -43,29 +43,28 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 # Any format supporting backing files _supported_fmt qcow qcow2 vmdk qed -_supported_proto file +_supported_proto generic _supported_os Linux TEST_OFFSETS="0 4294967296" -_make_test_img 6G +TEST_IMG=$TEST_IMG.base _make_test_img 6G echo "Filling base image" echo for offset in $TEST_OFFSETS; do # Some clusters with alternating backing file/image file reads - io writev $(( offset )) 512 1024 64 + TEST_IMG=$TEST_IMG.base io writev $(( offset )) 512 1024 64 # Complete backing clusters - io writev $(( offset + 64 * 1024)) 65536 65536 1 + TEST_IMG=$TEST_IMG.base io writev $(( offset + 64 * 1024)) 65536 65536 1 done -_check_test_img +TEST_IMG=$TEST_IMG.base _check_test_img echo "Creating test image with backing file" echo -mv "$TEST_IMG" "$TEST_IMG.base" _make_test_img -b "$TEST_IMG.base" 6G echo "Filling test image" @@ -81,24 +80,23 @@ done _check_test_img $QEMU_IMG commit "$TEST_IMG" -mv "$TEST_IMG.base" "$TEST_IMG" echo "Reading from the backing file" echo for offset in $TEST_OFFSETS; do # Some clusters with alternating backing file/image file reads - io readv $(( offset )) 512 1024 64 - io readv $(( offset + 512 )) 512 1024 64 + TEST_IMG=$TEST_IMG.base io readv $(( offset )) 512 1024 64 + TEST_IMG=$TEST_IMG.base io readv $(( offset + 512 )) 512 1024 64 # Complete test image clusters - io readv $(( offset + 64 * 1024)) 65536 65536 1 - io readv $(( offset + 64 * 1024 + 65536)) 65536 65536 1 + TEST_IMG=$TEST_IMG.base io readv $(( offset + 64 * 1024)) 65536 65536 1 + TEST_IMG=$TEST_IMG.base io readv $(( offset + 64 * 1024 + 65536)) 65536 65536 1 # Empty sectors - io_zero readv $(( offset + 64 * 1024 + 65536 * 4 )) 65536 65536 1 + TEST_IMG=$TEST_IMG.base io_zero readv $(( offset + 64 * 1024 + 65536 * 4 )) 65536 65536 1 done -_check_test_img +TEST_IMG=$TEST_IMG.base _check_test_img # success, all done echo "*** done" diff --git a/tests/qemu-iotests/020.out b/tests/qemu-iotests/020.out index fc9a63c..90a6271 100644 --- a/tests/qemu-iotests/020.out +++ b/tests/qemu-iotests/020.out @@ -1,5 +1,5 @@ QA output created by 020 -Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=6442450944 +Formatting 'TEST_DIR/t.IMGFMT.base', fmt=IMGFMT size=6442450944 Filling base image === IO: pattern 0