summaryrefslogtreecommitdiff
path: root/tests/usb-hcd-xhci-test.c
diff options
context:
space:
mode:
authorGonglei <arei.gonglei@huawei.com>2014-06-23 19:53:53 +0800
committerGerd Hoffmann <kraxel@redhat.com>2014-08-29 12:53:47 +0200
commit25e89ec5d2c7f8d953cb1ca558afa74974ff8930 (patch)
tree2e771dbd23702ba2ca9aa8e569f4231ac2ab6a6d /tests/usb-hcd-xhci-test.c
parent44ced58e3adf1bb16cac9d5b7bb178f75405902f (diff)
downloadqemu-25e89ec5d2c7f8d953cb1ca558afa74974ff8930.tar.gz
tests: add xHCI qtest
Signed-off-by: Gonglei <arei.gonglei@huawei.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'tests/usb-hcd-xhci-test.c')
-rw-r--r--tests/usb-hcd-xhci-test.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/usb-hcd-xhci-test.c b/tests/usb-hcd-xhci-test.c
new file mode 100644
index 0000000000..743e9798cd
--- /dev/null
+++ b/tests/usb-hcd-xhci-test.c
@@ -0,0 +1,35 @@
+/*
+ * QTest testcase for USB xHCI 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_xhci_init(void)
+{
+ qtest_start("-device nec-usb-xhci,id=xhci");
+
+ qtest_end();
+}
+
+
+int main(int argc, char **argv)
+{
+ int ret;
+
+ g_test_init(&argc, &argv, NULL);
+
+ qtest_add_func("/xhci/pci/init", test_xhci_init);
+
+ ret = g_test_run();
+
+ return ret;
+}