[libvirt] [PATCH] test: Activate interfaces specified through driver config file.

Cole Robinson crobinso at redhat.com
Mon Oct 12 14:32:13 UTC 2009


This matches the behavior of domains, storage, etc. Also, fix up some
whitespace issues in the area.

Signed-off-by: Cole Robinson <crobinso at redhat.com>
---
 src/test/test_driver.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/test/test_driver.c b/src/test/test_driver.c
index 0b866d2..0541a73 100644
--- a/src/test/test_driver.c
+++ b/src/test/test_driver.c
@@ -779,13 +779,16 @@ static int testOpenFromFile(virConnectPtr conn,
             if (!def)
                 goto error;
         } else {
-        if ((def = virInterfaceDefParseNode(conn, xml, ifaces[i])) == NULL)
+            if ((def = virInterfaceDefParseNode(conn, xml, ifaces[i])) == NULL)
                 goto error;
         }
+
         if (!(iface = virInterfaceAssignDef(conn, &privconn->ifaces, def))) {
             virInterfaceDefFree(def);
             goto error;
         }
+
+        iface->active = 1;
         virInterfaceObjUnlock(iface);
     }
     VIR_FREE(ifaces);
-- 
1.6.5.rc2




More information about the libvir-list mailing list