[libvirt] [PATCH] test_driver: Add testDomainDestroyFlags

Katerina Koukiou kkoukiou at redhat.com
Thu Mar 22 16:57:52 UTC 2018


Signed-off-by: Katerina Koukiou <kkoukiou at redhat.com>
---
 src/test/test_driver.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/test/test_driver.c b/src/test/test_driver.c
index 4de0cc533..f9482970a 100644
--- a/src/test/test_driver.c
+++ b/src/test/test_driver.c
@@ -1782,13 +1782,17 @@ static int testConnectListDomains(virConnectPtr conn,
                                         NULL, NULL);
 }
 
-static int testDomainDestroy(virDomainPtr domain)
+static int testDomainDestroyFlags(virDomainPtr domain,
+                                  unsigned int flags)
 {
     testDriverPtr privconn = domain->conn->privateData;
     virDomainObjPtr privdom;
     virObjectEventPtr event = NULL;
     int ret = -1;
 
+    virCheckFlags(0, -1);
+
+
     if (!(privdom = testDomObjFromDomain(domain)))
         goto cleanup;
 
@@ -1813,6 +1817,11 @@ static int testDomainDestroy(virDomainPtr domain)
     return ret;
 }
 
+static int testDomainDestroy(virDomainPtr domain)
+{
+    return testDomainDestroyFlags(domain, 0);
+}
+
 static int testDomainResume(virDomainPtr domain)
 {
     testDriverPtr privconn = domain->conn->privateData;
@@ -6872,6 +6881,7 @@ static virHypervisorDriver testHypervisorDriver = {
     .domainShutdownFlags = testDomainShutdownFlags, /* 0.9.10 */
     .domainReboot = testDomainReboot, /* 0.1.1 */
     .domainDestroy = testDomainDestroy, /* 0.1.1 */
+    .domainDestroyFlags = testDomainDestroyFlags, /* 4.2.0 */
     .domainGetOSType = testDomainGetOSType, /* 0.1.9 */
     .domainGetMaxMemory = testDomainGetMaxMemory, /* 0.1.4 */
     .domainSetMaxMemory = testDomainSetMaxMemory, /* 0.1.1 */
-- 
2.15.0




More information about the libvir-list mailing list