Merge remote-tracking branch 'qemu/master'
[qemu/ar7.git] / tests / spapr-phb-test.c
blobd3522ea0934c60ea18b2b9b2600b8a890060f27a
1 /*
2 * QTest testcase for SPAPR PHB
4 * Authors:
5 * Alexey Kardashevskiy <aik@ozlabs.ru>
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 */
10 #include "qemu/osdep.h"
12 #include "libqtest.h"
14 #define TYPE_SPAPR_PCI_HOST_BRIDGE "spapr-pci-host-bridge"
16 /* Tests only initialization so far. TODO: Replace with functional tests */
17 static void test_phb_device(void)
21 int main(int argc, char **argv)
23 int ret;
25 g_test_init(&argc, &argv, NULL);
26 qtest_add_func("/spapr-phb/device", test_phb_device);
28 qtest_start("-device " TYPE_SPAPR_PCI_HOST_BRIDGE ",index=30");
30 ret = g_test_run();
32 qtest_end();
34 return ret;