From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43650) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgbZr-0003bn-5p for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:33:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgbZX-0003XS-Vt for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:33:23 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55679) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgbZX-0003XI-OB for qemu-devel@nongnu.org; Thu, 06 Dec 2012 08:33:03 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qB6DX3Mc025393 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 6 Dec 2012 08:33:03 -0500 From: Kevin Wolf Date: Thu, 6 Dec 2012 14:32:54 +0100 Message-Id: <1354800780-10683-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 0/6] blkdebug/qcow2/qemu-iotests: Add some AIO testing List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, stefanha@redhat.com The few existing test cases that involve AIO depend on luck for getting the right order of requests so that they really test interesting cases. This series allows a more systematic approach by stopping and resuming AIO requests at given points. Kevin Wolf (6): blkdebug: Allow usage without config file blkdebug: Factor out remove_rule() blkdebug: Implement suspend/resume of AIO requests qemu-io: Add AIO debugging commands qcow2: Move BLKDBG_EVENT out of the lock qemu-iotests: Test concurrent cluster allocations block.c | 39 ++++++++ block.h | 5 + block/blkdebug.c | 128 +++++++++++++++++++++++++- block/qcow2.c | 2 +- block_int.h | 6 ++ qemu-io.c | 64 +++++++++++++ tests/qemu-iotests/046 | 215 ++++++++++++++++++++++++++++++++++++++++++++ tests/qemu-iotests/046.out | 163 +++++++++++++++++++++++++++++++++ tests/qemu-iotests/group | 1 + 9 files changed, 617 insertions(+), 6 deletions(-) create mode 100755 tests/qemu-iotests/046 create mode 100644 tests/qemu-iotests/046.out -- 1.7.6.5