From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60800) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S70fA-0003VV-11 for qemu-devel@nongnu.org; Mon, 12 Mar 2012 04:31:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S70f8-0002wG-42 for qemu-devel@nongnu.org; Mon, 12 Mar 2012 04:31:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:43602) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S70f7-0002w5-Sl for qemu-devel@nongnu.org; Mon, 12 Mar 2012 04:31:26 -0400 Message-ID: <4F5DB52D.2040507@redhat.com> Date: Mon, 12 Mar 2012 09:34:53 +0100 From: Kevin Wolf MIME-Version: 1.0 References: <1331297197-4289-1-git-send-email-kwolf@redhat.com> <1331297197-4289-3-git-send-email-kwolf@redhat.com> <4F5A5A86.2030704@redhat.com> In-Reply-To: <4F5A5A86.2030704@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 2/3] make check: Add qemu-iotests subset List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: stefanha@gmail.com, qemu-devel@nongnu.org Am 09.03.2012 20:31, schrieb Anthony Liguori: > On 03/09/2012 06:46 AM, Kevin Wolf wrote: >> Run the 'quick' group from qemu-iotests during 'make check'. >> >> Signed-off-by: Kevin Wolf >> --- >> tests/Makefile | 5 +++++ >> tests/qemu-iotests-quick.sh | 17 +++++++++++++++++ >> 2 files changed, 22 insertions(+), 0 deletions(-) >> create mode 100755 tests/qemu-iotests-quick.sh >> >> diff --git a/tests/Makefile b/tests/Makefile >> index 74b29dc..571ad42 100644 >> --- a/tests/Makefile >> +++ b/tests/Makefile >> @@ -1,6 +1,9 @@ >> +export SRC_PATH >> + >> CHECKS = check-qdict check-qfloat check-qint check-qstring check-qlist >> CHECKS += check-qjson test-qmp-output-visitor test-qmp-input-visitor >> CHECKS += test-string-input-visitor test-string-output-visitor test-coroutine >> +CHECKS += $(SRC_PATH)/tests/qemu-iotests-quick.sh > > Not to suggest that we don't start here, but I think we should look into how to > make qemu-iotest use gtester in the near future. > > That will allow the qemu-iotest to be part of the make check-report output and > will provide an easy way for other tools (like autotest) to run these tests. Yes, we need to figure out how to integrate shell scripts with gtester. If we can't, we need to rethink gtester as our framework and put something more flexible on top. Kevin