From 44ced58e3adf1bb16cac9d5b7bb178f75405902f Mon Sep 17 00:00:00 2001 From: Gonglei Date: Mon, 23 Jun 2014 19:53:52 +0800 Subject: tests: add UHCI qtest Signed-off-by: Gonglei Signed-off-by: Gerd Hoffmann --- tests/usb-hcd-uhci-test.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/usb-hcd-uhci-test.c (limited to 'tests/usb-hcd-uhci-test.c') diff --git a/tests/usb-hcd-uhci-test.c b/tests/usb-hcd-uhci-test.c new file mode 100644 index 0000000000..94e858f4c6 --- /dev/null +++ b/tests/usb-hcd-uhci-test.c @@ -0,0 +1,35 @@ +/* + * QTest testcase for USB UHCI controller + * + * Copyright (c) 2014 HUAWEI TECHNOLOGIES CO.,LTD. + * + * 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 +#include "libqtest.h" +#include "qemu/osdep.h" + + +static void test_uhci_init(void) +{ + qtest_start("-device piix3-usb-uhci,id=uhci"); + + qtest_end(); +} + + +int main(int argc, char **argv) +{ + int ret; + + g_test_init(&argc, &argv, NULL); + + qtest_add_func("/uhci/pci/init", test_uhci_init); + + ret = g_test_run(); + + return ret; +} -- cgit v1.2.3