[libvirt] [PATCH v2 3/5] virpcitest: Introduce testVirPCIDeviceReattach

Michal Privoznik mprivozn at redhat.com
Thu Oct 31 11:23:40 UTC 2013


This test will reattach the PCI device detached in the previous test.

Signed-off-by: Michal Privoznik <mprivozn at redhat.com>
---
 tests/virpcitest.c | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/tests/virpcitest.c b/tests/virpcitest.c
index 3eaa469..8811add 100644
--- a/tests/virpcitest.c
+++ b/tests/virpcitest.c
@@ -102,6 +102,42 @@ cleanup:
 }
 
 static int
+testVirPCIDeviceReattach(const void *oaque ATTRIBUTE_UNUSED)
+{
+    int ret = -1;
+    virPCIDevicePtr dev = NULL;
+    virPCIDeviceListPtr activeDevs = NULL, inactiveDevs = NULL;
+    int count;
+
+    if (!(dev = virPCIDeviceNew(0, 0, 1, 0)) ||
+        !(activeDevs = virPCIDeviceListNew()) ||
+        !(inactiveDevs = virPCIDeviceListNew()))
+        goto cleanup;
+
+    if (virPCIDeviceListAdd(inactiveDevs, dev) < 0) {
+        virPCIDeviceFree(dev);
+        goto cleanup;
+    }
+
+    CHECK_LIST_COUNT(activeDevs, 0);
+    CHECK_LIST_COUNT(inactiveDevs, 1);
+
+    if (virPCIDeviceSetStubDriver(dev, "pci-stub") < 0)
+        goto cleanup;
+
+    if (virPCIDeviceReattach(dev, activeDevs, inactiveDevs) < 0)
+        goto cleanup;
+
+    CHECK_LIST_COUNT(activeDevs, 0);
+    CHECK_LIST_COUNT(inactiveDevs, 0);
+
+    ret = 0;
+cleanup:
+    virObjectUnref(activeDevs);
+    virObjectUnref(inactiveDevs);
+    return ret;
+}
+static int
 mymain(void)
 {
     int ret = 0;
@@ -126,6 +162,7 @@ mymain(void)
 
     DO_TEST(testVirPCIDeviceNew);
     DO_TEST(testVirPCIDeviceDetach);
+    DO_TEST(testVirPCIDeviceReattach);
 
     if (getenv("LIBVIRT_SKIP_CLEANUP") == NULL)
         virFileDeleteTree(fakesysfsdir);
-- 
1.8.1.5




More information about the libvir-list mailing list