From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55086) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNntP-0001pu-Md for qemu-devel@nongnu.org; Wed, 12 Mar 2014 14:28:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WNntG-00063s-82 for qemu-devel@nongnu.org; Wed, 12 Mar 2014 14:28:39 -0400 Received: from cantor2.suse.de ([195.135.220.15]:43623 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNntG-00062e-0b for qemu-devel@nongnu.org; Wed, 12 Mar 2014 14:28:30 -0400 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 97AD175022 for ; Wed, 12 Mar 2014 18:28:29 +0000 (UTC) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Wed, 12 Mar 2014 19:28:25 +0100 Message-Id: <1394648907-20096-14-git-send-email-afaerber@suse.de> In-Reply-To: <1394648907-20096-1-git-send-email-afaerber@suse.de> References: <1394648907-20096-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH qom-next v3 13/15] tests: Add nvme qtest List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= Signed-off-by: Andreas F=C3=A4rber --- tests/Makefile | 3 +++ tests/nvme-test.c | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 tests/nvme-test.c diff --git a/tests/Makefile b/tests/Makefile index 23e764d..c8b4060 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -104,6 +104,8 @@ check-qtest-pci-y +=3D tests/eepro100-test$(EXESUF) gcov-files-pci-y +=3D hw/net/eepro100.c check-qtest-pci-y +=3D tests/ne2000-test$(EXESUF) gcov-files-pci-y +=3D hw/net/ne2000.c +check-qtest-pci-y +=3D tests/nvme-test$(EXESUF) +gcov-files-pci-y +=3D hw/block/nvme.c check-qtest-pci-y +=3D $(check-qtest-virtio-y) gcov-files-pci-y +=3D $(gcov-files-virtio-y) hw/virtio/virtio-pci.c check-qtest-pci-y +=3D tests/tpci200-test$(EXESUF) @@ -275,6 +277,7 @@ tests/qom-test$(EXESUF): tests/qom-test.o tests/blockdev-test$(EXESUF): tests/blockdev-test.o $(libqos-pc-obj-y) tests/qdev-monitor-test$(EXESUF): tests/qdev-monitor-test.o $(libqos-pc-= obj-y) tests/pvpanic-test$(EXESUF): tests/pvpanic-test.o +tests/nvme-test$(EXESUF): tests/nvme-test.o tests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket= _scm_helper.o =20 # QTest rules diff --git a/tests/nvme-test.c b/tests/nvme-test.c new file mode 100644 index 0000000..85768e8 --- /dev/null +++ b/tests/nvme-test.c @@ -0,0 +1,34 @@ +/* + * QTest testcase for NVMe + * + * Copyright (c) 2014 SUSE LINUX Products GmbH + * + * This work is licensed under the terms of the GNU GPL, version 2 or la= ter. + * See the COPYING file in the top-level directory. + */ + +#include +#include +#include "libqtest.h" +#include "qemu/osdep.h" + +/* Tests only initialization so far. TODO: Replace with functional tests= */ +static void nop(void) +{ +} + +int main(int argc, char **argv) +{ + int ret; + + g_test_init(&argc, &argv, NULL); + qtest_add_func("/nvme/nop", nop); + + qtest_start("-drive id=3Ddrv0,if=3Dnone,file=3D/dev/null " + "-device nvme,drive=3Ddrv0,serial=3Dfoo"); + ret =3D g_test_run(); + + qtest_end(); + + return ret; +} --=20 1.8.4.5