]> git.proxmox.com Git - mirror_qemu.git/blame - tests/usb-hcd-ohci-test.c
block: Declare blockdev-add and blockdev-del supported
[mirror_qemu.git] / tests / usb-hcd-ohci-test.c
CommitLineData
28edfce0
GA
1/*
2 * QTest testcase for USB OHCI controller
3 *
fe75270c 4 * Copyright (c) 2014 HUAWEI TECHNOLOGIES CO., LTD.
28edfce0
GA
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
9
e532b2e0 10#include "qemu/osdep.h"
28edfce0 11#include "libqtest.h"
b3937683 12#include "libqos/usb.h"
28edfce0
GA
13
14
15static void test_ohci_init(void)
16{
28edfce0 17
28edfce0
GA
18}
19
b3937683
IM
20static void test_ohci_hotplug(void)
21{
22 usb_test_hotplug("ohci", 1, NULL);
23}
28edfce0
GA
24
25int main(int argc, char **argv)
26{
27 int ret;
28
29 g_test_init(&argc, &argv, NULL);
30
31 qtest_add_func("/ohci/pci/init", test_ohci_init);
b3937683 32 qtest_add_func("/ohci/pci/hotplug", test_ohci_hotplug);
28edfce0 33
b3937683 34 qtest_start("-device pci-ohci,id=ohci");
28edfce0 35 ret = g_test_run();
b3937683 36 qtest_end();
28edfce0
GA
37
38 return ret;
39}