aboutsummaryrefslogtreecommitdiff
path: root/tests/usb-hcd-uhci-test.c
diff options
context:
space:
mode:
authorGonglei <arei.gonglei@huawei.com>2014-06-23 19:53:52 +0800
committerGerd Hoffmann <kraxel@redhat.com>2014-08-29 12:53:47 +0200
commit44ced58e3adf1bb16cac9d5b7bb178f75405902f (patch)
tree1010b0afde841dd0bda31c49bff647a56013f8b2 /tests/usb-hcd-uhci-test.c
parent28edfce0f3e8536b30573343618635f8713d6326 (diff)
tests: add UHCI qtest
Signed-off-by: Gonglei <arei.gonglei@huawei.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'tests/usb-hcd-uhci-test.c')
-rw-r--r--tests/usb-hcd-uhci-test.c35
1 files changed, 35 insertions, 0 deletions
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 <glib.h>
+#include <string.h>
+#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;
+}