From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44249) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WChvr-0003G4-CI for qemu-devel@nongnu.org; Sun, 09 Feb 2014 22:53:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WChvg-0003to-6J for qemu-devel@nongnu.org; Sun, 09 Feb 2014 22:53:19 -0500 Received: from e23smtp04.au.ibm.com ([202.81.31.146]:41526) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WChvf-0003tB-GF for qemu-devel@nongnu.org; Sun, 09 Feb 2014 22:53:08 -0500 Received: from /spool/local by e23smtp04.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 10 Feb 2014 13:53:04 +1000 From: Alexey Kardashevskiy Date: Mon, 10 Feb 2014 14:52:56 +1100 Message-Id: <1392004376-17016-3-git-send-email-aik@ozlabs.ru> In-Reply-To: <1392004376-17016-1-git-send-email-aik@ozlabs.ru> References: <1391947053-26753-1-git-send-email-afaerber@suse.de> <1392004376-17016-1-git-send-email-aik@ozlabs.ru> Subject: [Qemu-devel] [PATCH 2/2] tests-ppc64: test for -device spapr-pci-host-bridge List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexey Kardashevskiy , qemu-ppc@nongnu.org, Alexander Graf , =?UTF-8?q?Andreas=20F=C3=A4rber?= This adds a test if SPAPR PHB can be added via the command line. Signed-off-by: Alexey Kardashevskiy --- tests/Makefile | 2 ++ tests/spapr-phb-test.c | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 tests/spapr-phb-test.c diff --git a/tests/Makefile b/tests/Makefile index 3a00ea7..303225e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -117,6 +117,7 @@ check-qtest-s390x-y += tests/qom-test$(EXESUF) check-qtest-unicore32-y += tests/qom-test$(EXESUF) check-qtest-xtensa-y += tests/qom-test$(EXESUF) check-qtest-xtensaeb-y = $(check-qtest-xtensa-y) +check-qtest-ppc64-y += tests/spapr-phb-test$(EXESUF) check-qapi-schema-y := $(addprefix tests/qapi-schema/, \ comments.json empty.json funny-char.json indented-expr.json \ @@ -203,6 +204,7 @@ libqos-omap-obj-y = $(libqos-obj-y) tests/libqos/i2c-omap.o tests/rtc-test$(EXESUF): tests/rtc-test.o tests/m48t59-test$(EXESUF): tests/m48t59-test.o tests/endianness-test$(EXESUF): tests/endianness-test.o +tests/spapr-phb-test$(EXESUF): tests/spapr-phb-test.o $(libqos-obj-y) tests/fdc-test$(EXESUF): tests/fdc-test.o tests/ide-test$(EXESUF): tests/ide-test.o $(libqos-pc-obj-y) tests/hd-geo-test$(EXESUF): tests/hd-geo-test.o diff --git a/tests/spapr-phb-test.c b/tests/spapr-phb-test.c new file mode 100644 index 0000000..8cad354 --- /dev/null +++ b/tests/spapr-phb-test.c @@ -0,0 +1,28 @@ +/* + * QTest testcase for SPAPR PHB + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + */ +#include + +#include "libqtest.h" + +#define TYPE_SPAPR_PCI_HOST_BRIDGE "spapr-pci-host-bridge" + +static void test_phb_device(void) +{ + qtest_start("-device " TYPE_SPAPR_PCI_HOST_BRIDGE ",index=100"); + + qtest_end(); +} + +int main(int argc, char **argv) +{ + g_test_init(&argc, &argv, NULL); + + qtest_add_func("/qmp/phb_device", test_phb_device); + + return g_test_run(); +} + -- 1.8.4.rc4