summaryrefslogtreecommitdiffstats
path: root/tests/usb-hcd-xhci-test.c
diff options
context:
space:
mode:
authorMarc-André Lureau2018-05-31 21:51:19 +0200
committerGerd Hoffmann2018-06-12 12:07:30 +0200
commit1a3ff20e67330a15d62b00c2916e3541872103c0 (patch)
treea07721a216566ee41dd76fbf1ac74dd687382b78 /tests/usb-hcd-xhci-test.c
parentusb-ccid: fix bus leak (diff)
downloadqemu-1a3ff20e67330a15d62b00c2916e3541872103c0.tar.gz
qemu-1a3ff20e67330a15d62b00c2916e3541872103c0.tar.xz
qemu-1a3ff20e67330a15d62b00c2916e3541872103c0.zip
usb-hcd-xhci-test: add a test for ccid hotplug
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-id: 20180531195119.22021-5-marcandre.lureau@redhat.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.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/usb-hcd-xhci-test.c b/tests/usb-hcd-xhci-test.c
index 9c14e3053a..5b1b681bf2 100644
--- a/tests/usb-hcd-xhci-test.c
+++ b/tests/usb-hcd-xhci-test.c
@@ -35,6 +35,15 @@ static void test_usb_uas_hotplug(void)
qtest_qmp_device_del("uas");
}
+static void test_usb_ccid_hotplug(void)
+{
+ qtest_qmp_device_add("usb-ccid", "ccid", NULL);
+ qtest_qmp_device_del("ccid");
+ /* check the device can be added again */
+ qtest_qmp_device_add("usb-ccid", "ccid", NULL);
+ qtest_qmp_device_del("ccid");
+}
+
int main(int argc, char **argv)
{
int ret;
@@ -44,6 +53,7 @@ int main(int argc, char **argv)
qtest_add_func("/xhci/pci/init", test_xhci_init);
qtest_add_func("/xhci/pci/hotplug", test_xhci_hotplug);
qtest_add_func("/xhci/pci/hotplug/usb-uas", test_usb_uas_hotplug);
+ qtest_add_func("/xhci/pci/hotplug/usb-ccid", test_usb_ccid_hotplug);
qtest_start("-device nec-usb-xhci,id=xhci"
" -drive id=drive0,if=none,file=null-co://,format=raw");