From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNntR-0001qT-02 for qemu-devel@nongnu.org; Wed, 12 Mar 2014 14:28:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WNntG-00063y-9c for qemu-devel@nongnu.org; Wed, 12 Mar 2014 14:28:40 -0400 Received: from cantor2.suse.de ([195.135.220.15]:43624 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNntG-00062h-1w for qemu-devel@nongnu.org; Wed, 12 Mar 2014 14:28:30 -0400 Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id A796075023 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:26 +0100 Message-Id: <1394648907-20096-15-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 14/15] tests: Add i82801b11 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/i82801b11-test.c | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 tests/i82801b11-test.c diff --git a/tests/Makefile b/tests/Makefile index c8b4060..bf6c0a9 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -134,6 +134,8 @@ gcov-files-i386-y +=3D hw/net/vmxnet_rx_pkt.c gcov-files-i386-y +=3D hw/net/vmxnet_tx_pkt.c check-qtest-i386-y +=3D tests/pvpanic-test$(EXESUF) gcov-files-i386-y +=3D i386-softmmu/hw/misc/pvpanic.c +check-qtest-i386-y +=3D tests/i82801b11-test$(EXESUF) +gcov-files-i386-y +=3D hw/pci-bridge/i802801b11.c check-qtest-x86_64-y =3D $(check-qtest-i386-y) gcov-files-i386-y +=3D i386-softmmu/hw/timer/mc146818rtc.c gcov-files-x86_64-y =3D $(subst i386-softmmu/,x86_64-softmmu/,$(gcov-fil= es-i386-y)) @@ -278,6 +280,7 @@ 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/i82801b11-test$(EXESUF): tests/i82801b11-test.o tests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket= _scm_helper.o =20 # QTest rules diff --git a/tests/i82801b11-test.c b/tests/i82801b11-test.c new file mode 100644 index 0000000..78d9ce0 --- /dev/null +++ b/tests/i82801b11-test.c @@ -0,0 +1,33 @@ +/* + * QTest testcase for i82801b11 + * + * 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("/i82801b11/nop", nop); + + qtest_start("-machine q35 -device i82801b11-bridge,bus=3Dpcie.0,addr= =3D1e.0"); + ret =3D g_test_run(); + + qtest_end(); + + return ret; +} --=20 1.8.4.5