CIM
Threads by month
- ----- 2025 -----
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
August 2009
- 9 participants
- 82 discussions

[PATCH] Fix behavior of calling RequestStateChange() with DISABLED state
by Kaitlin Rupert 10 Aug '09
by Kaitlin Rupert 10 Aug '09
10 Aug '09
# HG changeset patch
# User Kaitlin Rupert <karupert(a)us.ibm.com>
# Date 1249685637 25200
# Node ID b3412cf292d12512a3c6c6f9e266cfbaaa437fef
# Parent 2cb7c25bb35e7cb7b532ed78a43a3f27cb9fcf4f
Fix behavior of calling RequestStateChange() with DISABLED state...
According to the CIM_EnabledLogicalElement mof, a disabled request should
immediately disconnect the guest. Currently, the provider calls a shutdown.
This patch changes the behavior so that DISABLED calls virDomainDestroy() and
SHUTDOWN continues to call virDomainShutdown() as expected.
Signed-off-by: Kaitlin Rupert <karupert(a)us.ibm.com>
diff -r 2cb7c25bb35e -r b3412cf292d1 src/Virt_ComputerSystem.c
--- a/src/Virt_ComputerSystem.c Thu Aug 06 16:53:24 2009 -0700
+++ b/src/Virt_ComputerSystem.c Fri Aug 07 15:53:57 2009 -0700
@@ -943,16 +943,41 @@
switch (info->state) {
case VIR_DOMAIN_RUNNING:
case VIR_DOMAIN_BLOCKED:
- CU_DEBUG("Stop domain");
+ CU_DEBUG("Disable domain");
+ if (virDomainDestroy(dom) != 0)
+ virt_set_status(_BROKER, &s,
+ CMPI_RC_ERR_FAILED,
+ virDomainGetConnect(dom),
+ "Unable to disable domain");
+ break;
+ default:
+ CU_DEBUG("Cannot go to disabled state from %i", info->state);
+ cu_statusf(_BROKER, &s,
+ CMPI_RC_ERR_FAILED,
+ "Invalid state transition");
+ };
+
+ return s;
+}
+
+static CMPIStatus state_change_shutdown(virDomainPtr dom, virDomainInfoPtr info)
+{
+ CMPIStatus s = {CMPI_RC_OK, NULL};
+
+ info->state = adjust_state_xen(dom, info->state);
+
+ switch (info->state) {
+ case VIR_DOMAIN_RUNNING:
+ case VIR_DOMAIN_BLOCKED:
+ CU_DEBUG("Shudown domain");
if (virDomainShutdown(dom) != 0)
virt_set_status(_BROKER, &s,
CMPI_RC_ERR_FAILED,
virDomainGetConnect(dom),
- "Unable to stop domain");
+ "Unable to shutdown domain");
break;
default:
- CU_DEBUG("Cannot go to disabled/shutdown state from %i",
- info->state);
+ CU_DEBUG("Cannot go to shutdown state from %i", info->state);
cu_statusf(_BROKER, &s,
CMPI_RC_ERR_FAILED,
"Invalid state transition");
@@ -1067,8 +1092,10 @@
if (state == CIM_STATE_ENABLED)
s = state_change_enable(dom, &info);
- else if ((state == CIM_STATE_DISABLED) || (state == CIM_STATE_SHUTDOWN))
+ else if (state == CIM_STATE_DISABLED)
s = state_change_disable(dom, &info);
+ else if (state == CIM_STATE_SHUTDOWN)
+ s = state_change_shutdown(dom, &info);
else if (state == CIM_STATE_PAUSED)
s = state_change_pause(dom, &info);
else if (state == CIM_STATE_REBOOT)
2
1

[PATCH] Add three new OperationalStatus states and map them all to libvirt states
by Richard Maciel 10 Aug '09
by Richard Maciel 10 Aug '09
10 Aug '09
# HG changeset patch
# User Richard Maciel <rmaciel(a)linux.vnet.ibm.com>
# Date 1249923352 10800
# Node ID dbd688f6df87435cb97e68051fbc16c47730837d
# Parent 411a3090c6a098de809144334edaa41f5d3007b0
Add three new OperationalStatus states and map them all to libvirt states
OperationalStatus states added:
STARTED
SUSPENDED
RELOCATED
Signed-off-by: Richard Maciel <rmaciel(a)linux.vnet.ibm.com>
diff -r 411a3090c6a0 -r dbd688f6df87 src/Virt_ComputerSystem.c
--- a/src/Virt_ComputerSystem.c Mon Aug 10 13:52:12 2009 -0300
+++ b/src/Virt_ComputerSystem.c Mon Aug 10 13:55:52 2009 -0300
@@ -187,7 +187,7 @@
}
}
-static uint16_t state_lv_to_cim_os(const char lv_state)
+static uint16_t state_lv_to_cim_os(const char lv_state, const bool migrating)
{
enum CIM_op_status {
CIM_OP_STATUS_UNKNOWN = 0,
@@ -208,25 +208,33 @@
CIM_OP_STATUS_DORMANT = 15,
CIM_OP_STATUS_COMPLETED = 17,
CIM_OP_STATUS_POWER_MODE = 18,
+ CIM_OP_STATUS_STARTED = 32768,
+ CIM_OP_STATUS_SUSPENDED = 32769,
+ CIM_OP_STATUS_RELOCATED = 32770,
};
+
+ if (migrating)
+ return CIM_OP_STATUS_RELOCATED;
+
switch (lv_state) {
case VIR_DOMAIN_NOSTATE:
case VIR_DOMAIN_SHUTDOWN:
case VIR_DOMAIN_SHUTOFF:
- return CIM_OP_STATUS_DORMANT;
+ return CIM_OP_STATUS_STOPPED;
case VIR_DOMAIN_CRASHED:
return CIM_OP_STATUS_ERROR;
case VIR_DOMAIN_RUNNING:
+ return CIM_OP_STATUS_STARTED;
+
case VIR_DOMAIN_BLOCKED:
case VIR_DOMAIN_PAUSED:
- return CIM_OP_STATUS_OK;
+ return CIM_OP_STATUS_SUSPENDED;
default:
return CIM_OP_STATUS_UNKNOWN;
-
}
}
@@ -271,6 +279,7 @@
CMPIArray *array;
CMPIStatus s;
struct infostore_ctx *infostore = NULL;
+ bool migrating = false;
ret = virDomainGetInfo(dom, &info);
if (ret != 0)
@@ -290,14 +299,19 @@
array = CMNewArray(broker, 1, CMPI_uint16, &s);
if ((s.rc != CMPI_RC_OK) || (CMIsNullObject(array)))
return 0;
+
+ infostore = infostore_open(dom);
- op_status = state_lv_to_cim_os((const int)info.state);
+ if (infostore != NULL)
+ migrating = infostore_get_bool(infostore, "migrating");
+
+ op_status = state_lv_to_cim_os((const int)info.state, migrating);
+
CMSetArrayElementAt(array, 0, &op_status, CMPI_uint16);
CMSetProperty(instance, "OperationalStatus",
(CMPIValue *)&array, CMPI_uint16A);
- infostore = infostore_open(dom);
if (infostore != NULL)
req_state = (uint16_t)infostore_get_u64(infostore, "reqstate");
else
1
0
# HG changeset patch
# User Kaitlin Rupert <karupert(a)us.ibm.com>
# Date 1249602804 25200
# Node ID 2cb7c25bb35e7cb7b532ed78a43a3f27cb9fcf4f
# Parent af509ca0e7f25db4e7ce96dff8bc77df6289e9b3
Move get_disk_pool() to SDC...
libvirt-cim won't build with versions of libvirt that don't have disk pool
support. Since only the SDC provider needs this function, move it there and
place it under a #if VIR_USE_LIBVIRT_STORAGE tag to ensure it doesn't get built
with older versions of libvirt.
Signed-off-by: Kaitlin Rupert <karupert(a)us.ibm.com>
diff -r af509ca0e7f2 -r 2cb7c25bb35e libxkutil/pool_parsing.c
--- a/libxkutil/pool_parsing.c Thu Aug 06 14:59:23 2009 -0700
+++ b/libxkutil/pool_parsing.c Thu Aug 06 16:53:24 2009 -0700
@@ -230,26 +230,6 @@
return ret;
}
-int get_disk_pool(virStoragePoolPtr poolptr, struct virt_pool **pool)
-{
- char *xml;
- int ret;
-
- xml = virStoragePoolGetXMLDesc(poolptr, 0);
- if (xml == NULL)
- return 0;
-
- *pool = malloc(sizeof(**pool));
- if (*pool == NULL)
- return 0;
-
- ret = get_pool_from_xml(xml, *pool, CIM_RES_TYPE_DISK);
-
- free(xml);
-
- return ret;
-}
-
int define_pool(virConnectPtr conn, const char *xml, int res_type)
{
int ret = 1;
diff -r af509ca0e7f2 -r 2cb7c25bb35e libxkutil/pool_parsing.h
--- a/libxkutil/pool_parsing.h Thu Aug 06 14:59:23 2009 -0700
+++ b/libxkutil/pool_parsing.h Thu Aug 06 16:53:24 2009 -0700
@@ -67,7 +67,6 @@
void cleanup_virt_pool(struct virt_pool **pool);
int get_pool_from_xml(const char *xml, struct virt_pool *pool, int type);
-int get_disk_pool(virStoragePoolPtr poolptr, struct virt_pool **pool);
int define_pool(virConnectPtr conn, const char *xml, int res_type);
int destroy_pool(virConnectPtr conn, const char *name, int res_type);
diff -r af509ca0e7f2 -r 2cb7c25bb35e src/Virt_SettingsDefineCapabilities.c
--- a/src/Virt_SettingsDefineCapabilities.c Thu Aug 06 14:59:23 2009 -0700
+++ b/src/Virt_SettingsDefineCapabilities.c Thu Aug 06 16:53:24 2009 -0700
@@ -1027,6 +1027,26 @@
}
#if VIR_USE_LIBVIRT_STORAGE
+static int get_disk_pool(virStoragePoolPtr poolptr, struct virt_pool **pool)
+{
+ char *xml;
+ int ret;
+
+ xml = virStoragePoolGetXMLDesc(poolptr, 0);
+ if (xml == NULL)
+ return 0;
+
+ *pool = malloc(sizeof(**pool));
+ if (*pool == NULL)
+ return 0;
+
+ ret = get_pool_from_xml(xml, *pool, CIM_RES_TYPE_DISK);
+
+ free(xml);
+
+ return ret;
+}
+
static CMPIStatus new_volume_template(const CMPIObjectPath *ref,
int template_type,
virStoragePoolPtr poolptr,
2
1
# HG changeset patch
# User Deepti B. Kalakeri<deeptik(a)linux.vnet.ibm.com>
# Date 1249904367 25200
# Node ID d6774b718374366d94075401399c2a4fe0a67590
# Parent 51a906dbd4082a5f1c8f25566c235d296fb30a2b
[TEST] Fixing CSMigrationJobIndication/01*py .
Testd with RHEL5.3 and current sources.
Signed-off-by: Deepti B. Kalakeri <deeptik(a)linux.vnet.ibm.com>
diff -r 51a906dbd408 -r d6774b718374 suites/libvirt-cim/cimtest/ComputerSystemMigrationJobIndication/01_csmig_ind_for_offline_mig.py
--- a/suites/libvirt-cim/cimtest/ComputerSystemMigrationJobIndication/01_csmig_ind_for_offline_mig.py Thu Aug 06 15:32:52 2009 -0700
+++ b/suites/libvirt-cim/cimtest/ComputerSystemMigrationJobIndication/01_csmig_ind_for_offline_mig.py Mon Aug 10 04:39:27 2009 -0700
@@ -78,13 +78,14 @@
if clean_net != True:
return
- # clean the networkpool created on the remote machine
- target_net_list = net_list(t_sysname, virt)
- if target_net_list != None and default_network_name in target_net_list:
- ret_value = destroy_netpool(t_sysname, virt, default_network_name)
- if ret_value != PASS:
- logger.info("Unable to destroy networkpool '%s' on '%s'",
- default_network_name, t_sysname)
+ if t_sysname != "localhost" and t_sysname not in s_sysname:
+ # clean the networkpool created on the remote machine
+ target_net_list = net_list(t_sysname, virt)
+ if target_net_list != None and default_network_name in target_net_list:
+ ret_value = destroy_netpool(t_sysname, virt, default_network_name)
+ if ret_value != PASS:
+ logger.info("Unable to destroy networkpool '%s' on '%s'",
+ default_network_name, t_sysname)
# Remote Migration not Successful, clean the domain on src machine
src_list = domain_list(s_sysname, virt)
1
0

[PATCH] Add addiitonal attributes to StorageVolumeResourceAllocationSettingData
by Kaitlin Rupert 10 Aug '09
by Kaitlin Rupert 10 Aug '09
10 Aug '09
# HG changeset patch
# User Kaitlin Rupert <karupert(a)us.ibm.com>
# Date 1245187550 25200
# Node ID 7f946266983b4b0a7e0aa86d5a1b21b794b46a76
# Parent 8c9cb3efdbad40890a5408267bc6a0d7b4b3de6e
Add addiitonal attributes to StorageVolumeResourceAllocationSettingData...
These attributes will be needed when defining a new image. Also, make the
necessary changes to expose these attributes via SDC.
Signed-off-by: Kaitlin Rupert <karupert(a)us.ibm.com>
diff -r 8c9cb3efdbad -r 7f946266983b schema/ResourceAllocationSettingData.mof
--- a/schema/ResourceAllocationSettingData.mof Wed Aug 05 14:07:00 2009 -0300
+++ b/schema/ResourceAllocationSettingData.mof Tue Jun 16 14:25:50 2009 -0700
@@ -296,8 +296,12 @@
]
class Xen_StorageVolumeResourceAllocationSettingData : Xen_ResourceAllocationSettingData
{
+ string VolumeName;
string Path;
- uint16 Type;
+ uint16 FormatType;
+ uint16 AllocationQuantity;
+ uint16 Capacity;
+ string AllocationUnits;
};
[Description ("KVM storage volume settings"),
@@ -305,7 +309,11 @@
]
class KVM_StorageVolumeResourceAllocationSettingData : KVM_ResourceAllocationSettingData
{
+ string VolumeName;
string Path;
- uint16 Type;
+ uint16 FormatType;
+ uint16 AllocationQuantity;
+ uint16 Capacity;
+ string AllocationUnits;
};
diff -r 8c9cb3efdbad -r 7f946266983b src/Virt_SettingsDefineCapabilities.c
--- a/src/Virt_SettingsDefineCapabilities.c Wed Aug 05 14:07:00 2009 -0300
+++ b/src/Virt_SettingsDefineCapabilities.c Tue Jun 16 14:25:50 2009 -0700
@@ -1038,7 +1038,11 @@
struct virt_pool *pool = NULL;
CMPIInstance *inst = NULL;
int type = 0;
+ const char *name;
const char *path;
+ uint16_t alloc = 0;
+ uint16_t cap = 0;
+ const char *units;
switch(template_type) {
case SDC_RASD_MIN:
@@ -1080,11 +1084,24 @@
goto out;
CMSetProperty(inst, "InstanceID", (CMPIValue *)id, CMPI_chars);
- CMSetProperty(inst, "Type", (CMPIValue *)&type, CMPI_uint16);
+ CMSetProperty(inst, "FormatType", (CMPIValue *)&type, CMPI_uint16);
+
+ name = "tmp.img";
+ CMSetProperty(inst, "VolumeName", (CMPIValue *)name, CMPI_chars);
path = "/var/lib/libvirt/images/";
CMSetProperty(inst, "Path", (CMPIValue *)path, CMPI_chars);
+ alloc = 0;
+ CMSetProperty(inst, "AllocationQuantity",
+ (CMPIValue *)&alloc, CMPI_uint16);
+
+ cap = 0;
+ CMSetProperty(inst, "Capacity", (CMPIValue *)&cap, CMPI_uint16);
+
+ units = "G";
+ CMSetProperty(inst, "AllocationUnits", (CMPIValue *)units, CMPI_chars);
+
inst_list_add(list, inst);
out:
2
1

Test Run Summary (Aug 07 2009): Xen on Red Hat Enterprise Linux Server release 5.3 (Tikanga) with Pegasus
by Deepti B. Kalakeri 07 Aug '09
by Deepti B. Kalakeri 07 Aug '09
07 Aug '09
=================================================
Test Run Summary (Aug 07 2009): Xen on Red Hat Enterprise Linux Server release 5.3 (Tikanga) with Pegasus
=================================================
Distro: Red Hat Enterprise Linux Server release 5.3 (Tikanga)
Kernel: 2.6.18-128.el5xen
libvirt: 0.3.3
Hypervisor: Xen 3.1.0
CIMOM: Pegasus 2.7.1
Libvirt-cim revision: 940
Libvirt-cim changeset: 8690e2eca76e
Cimtest revision:
Cimtest changeset:
=================================================
FAIL : 24
XFAIL : 3
SKIP : 4
PASS : 134
-----------------
Total : 165
=================================================
FAIL Test Summary:
ComputerSystemIndication - 01_created_indication.py: FAIL
ComputerSystemMigrationJobIndication - 01_csmig_ind_for_offline_mig.py: FAIL
ElementAllocatedFromPool - 01_forward.py: FAIL
ElementAllocatedFromPool - 04_forward_errs.py: FAIL
HostSystem - 03_hs_to_settdefcap.py: FAIL
RASD - 01_verify_rasd_fields.py: FAIL
RASD - 02_enum.py: FAIL
ResourceAllocationFromPool - 01_forward.py: FAIL
ResourceAllocationFromPool - 02_reverse.py: FAIL
ResourcePoolConfigurationService - 07_DeleteResourcePool.py: FAIL
ResourcePoolConfigurationService - 09_DeleteDiskPool.py: FAIL
SettingsDefineCapabilities - 01_forward.py: FAIL
VSSD - 04_vssd_to_rasd.py: FAIL
VirtualSystemManagementService - 13_refconfig_additional_devs.py: FAIL
VirtualSystemMigrationService - 01_migratable_host.py: FAIL
VirtualSystemMigrationService - 02_host_migrate_type.py: FAIL
VirtualSystemMigrationService - 05_migratable_host_errs.py: FAIL
VirtualSystemMigrationService - 06_remote_live_migration.py: FAIL
VirtualSystemMigrationService - 07_remote_offline_migration.py: FAIL
VirtualSystemMigrationService - 08_remote_restart_resume_migration.py: FAIL
VirtualSystemSettingDataComponent - 02_reverse.py: FAIL
VirtualSystemSettingDataComponent - 03_vssdc_fwd_errs.py: FAIL
VirtualSystemSettingDataComponent - 04_vssdc_rev_errs.py: FAIL
VirtualSystemSnapshotService - 03_create_snapshot.py: FAIL
=================================================
XFAIL Test Summary:
ComputerSystem - 33_suspend_reboot.py: XFAIL
VirtualSystemManagementService - 16_removeresource.py: XFAIL
VirtualSystemManagementService - 22_addmulti_brg_interface.py: XFAIL
=================================================
SKIP Test Summary:
ComputerSystem - 02_nosystems.py: SKIP
LogicalDisk - 02_nodevs.py: SKIP
NetworkPort - 03_user_netport.py: SKIP
ResourcePoolConfigurationService - 08_CreateDiskResourcePool.py: SKIP
=================================================
Full report:
--------------------------------------------------------------------
AllocationCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
AllocationCapabilities - 02_alloccap_gi_errs.py: PASS
--------------------------------------------------------------------
ComputerSystem - 01_enum.py: PASS
--------------------------------------------------------------------
ComputerSystem - 02_nosystems.py: SKIP
--------------------------------------------------------------------
ComputerSystem - 03_defineVS.py: PASS
--------------------------------------------------------------------
ComputerSystem - 04_defineStartVS.py: PASS
--------------------------------------------------------------------
ComputerSystem - 05_activate_defined_start.py: PASS
--------------------------------------------------------------------
ComputerSystem - 06_paused_active_suspend.py: PASS
--------------------------------------------------------------------
ComputerSystem - 22_define_suspend.py: PASS
--------------------------------------------------------------------
ComputerSystem - 23_pause_pause.py: PASS
--------------------------------------------------------------------
ComputerSystem - 27_define_pause_errs.py: PASS
--------------------------------------------------------------------
ComputerSystem - 32_start_reboot.py: PASS
--------------------------------------------------------------------
ComputerSystem - 33_suspend_reboot.py: XFAIL
ERROR - Got CIM error CIM_ERR_NOT_SUPPORTED: State not supported with return code 7
ERROR - Exception: Unable Suspend dom 'test_domain'
InvokeMethod(RequestStateChange): CIM_ERR_NOT_SUPPORTED: State not supported
Bug:<00012>
--------------------------------------------------------------------
ComputerSystem - 35_start_reset.py: PASS
--------------------------------------------------------------------
ComputerSystem - 40_RSC_start.py: PASS
--------------------------------------------------------------------
ComputerSystem - 41_cs_to_settingdefinestate.py: PASS
--------------------------------------------------------------------
ComputerSystem - 42_cs_gi_errs.py: PASS
--------------------------------------------------------------------
ComputerSystemIndication - 01_created_indication.py: FAIL
ERROR - Waited too long for destroy indication
--------------------------------------------------------------------
ComputerSystemMigrationJobIndication - 01_csmig_ind_for_offline_mig.py: FAIL
--------------------------------------------------------------------
ElementAllocatedFromPool - 01_forward.py: FAIL
ERROR - Xen_ElementAllocatedFromPool returned 0 ResourcePool objects for domain 'hd_domain'
--------------------------------------------------------------------
ElementAllocatedFromPool - 02_reverse.py: PASS
--------------------------------------------------------------------
ElementAllocatedFromPool - 03_reverse_errs.py: PASS
--------------------------------------------------------------------
ElementAllocatedFromPool - 04_forward_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified with return code 1
ERROR - Failed to define the dom: hd_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified
--------------------------------------------------------------------
ElementCapabilities - 01_forward.py: PASS
--------------------------------------------------------------------
ElementCapabilities - 02_reverse.py: PASS
--------------------------------------------------------------------
ElementCapabilities - 03_forward_errs.py: PASS
--------------------------------------------------------------------
ElementCapabilities - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
ElementCapabilities - 05_hostsystem_cap.py: PASS
--------------------------------------------------------------------
ElementConforms - 01_forward.py: PASS
--------------------------------------------------------------------
ElementConforms - 02_reverse.py: PASS
--------------------------------------------------------------------
ElementConforms - 03_ectp_fwd_errs.py: PASS
--------------------------------------------------------------------
ElementConforms - 04_ectp_rev_errs.py: PASS
--------------------------------------------------------------------
ElementSettingData - 01_forward.py: PASS
--------------------------------------------------------------------
ElementSettingData - 03_esd_assoc_with_rasd_errs.py: PASS
--------------------------------------------------------------------
EnabledLogicalElementCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
EnabledLogicalElementCapabilities - 02_elecap_gi_errs.py: PASS
--------------------------------------------------------------------
HostSystem - 01_enum.py: PASS
--------------------------------------------------------------------
HostSystem - 02_hostsystem_to_rasd.py: PASS
--------------------------------------------------------------------
HostSystem - 03_hs_to_settdefcap.py: FAIL
ERROR - Xen_SettingsDefineCapabilities returned 16 RASD objects instead of 20 for DiskPool/cimtest-diskpool
CIM_ERR_INVALID_CLASS: Linux_ComputerSystem
--------------------------------------------------------------------
HostSystem - 04_hs_to_EAPF.py: PASS
--------------------------------------------------------------------
HostSystem - 05_hs_gi_errs.py: PASS
--------------------------------------------------------------------
HostSystem - 06_hs_to_vsms.py: PASS
--------------------------------------------------------------------
HostedAccessPoint - 01_forward.py: PASS
--------------------------------------------------------------------
HostedAccessPoint - 02_reverse.py: PASS
--------------------------------------------------------------------
HostedDependency - 01_forward.py: PASS
--------------------------------------------------------------------
HostedDependency - 02_reverse.py: PASS
--------------------------------------------------------------------
HostedDependency - 03_enabledstate.py: PASS
--------------------------------------------------------------------
HostedDependency - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
HostedResourcePool - 01_forward.py: PASS
--------------------------------------------------------------------
HostedResourcePool - 02_reverse.py: PASS
--------------------------------------------------------------------
HostedResourcePool - 03_forward_errs.py: PASS
--------------------------------------------------------------------
HostedResourcePool - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
HostedService - 01_forward.py: PASS
--------------------------------------------------------------------
HostedService - 02_reverse.py: PASS
--------------------------------------------------------------------
HostedService - 03_forward_errs.py: PASS
--------------------------------------------------------------------
HostedService - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
KVMRedirectionSAP - 01_enum_KVMredSAP.py: PASS
--------------------------------------------------------------------
LogicalDisk - 01_disk.py: PASS
--------------------------------------------------------------------
LogicalDisk - 02_nodevs.py: SKIP
ERROR - System has defined domains; unable to run
--------------------------------------------------------------------
LogicalDisk - 03_ld_gi_errs.py: PASS
--------------------------------------------------------------------
Memory - 01_memory.py: PASS
--------------------------------------------------------------------
Memory - 02_defgetmem.py: PASS
--------------------------------------------------------------------
Memory - 03_mem_gi_errs.py: PASS
--------------------------------------------------------------------
NetworkPort - 01_netport.py: PASS
--------------------------------------------------------------------
NetworkPort - 02_np_gi_errors.py: PASS
--------------------------------------------------------------------
NetworkPort - 03_user_netport.py: SKIP
--------------------------------------------------------------------
Processor - 01_processor.py: PASS
--------------------------------------------------------------------
Processor - 02_definesys_get_procs.py: PASS
--------------------------------------------------------------------
Processor - 03_proc_gi_errs.py: PASS
--------------------------------------------------------------------
Profile - 01_enum.py: PASS
--------------------------------------------------------------------
Profile - 02_profile_to_elec.py: PASS
--------------------------------------------------------------------
Profile - 03_rprofile_gi_errs.py: PASS
--------------------------------------------------------------------
RASD - 01_verify_rasd_fields.py: FAIL
ERROR - NetworkName val mismatch: got testbridge, expected None
--------------------------------------------------------------------
RASD - 02_enum.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified with return code 1
ERROR - Failed to Define the domain: VSSDC_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified
--------------------------------------------------------------------
RASD - 03_rasd_errs.py: PASS
--------------------------------------------------------------------
RASD - 04_disk_rasd_size.py: PASS
--------------------------------------------------------------------
RASD - 05_disk_rasd_emu_type.py: PASS
--------------------------------------------------------------------
RASD - 06_parent_net_pool.py: PASS
--------------------------------------------------------------------
RASD - 07_parent_disk_pool.py: PASS
--------------------------------------------------------------------
RedirectionService - 01_enum_crs.py: PASS
--------------------------------------------------------------------
RedirectionService - 02_enum_crscap.py: PASS
--------------------------------------------------------------------
RedirectionService - 03_RedirectionSAP_errs.py: PASS
--------------------------------------------------------------------
ReferencedProfile - 01_verify_refprof.py: PASS
--------------------------------------------------------------------
ReferencedProfile - 02_refprofile_errs.py: PASS
--------------------------------------------------------------------
ResourceAllocationFromPool - 01_forward.py: FAIL
ERROR - No RASD associated with NetworkPool/cimtest-networkpool
--------------------------------------------------------------------
ResourceAllocationFromPool - 02_reverse.py: FAIL
ERROR - No associated pool with RAFP_dom/11:22:33:aa:bb:cc
CIM_ERR_FAILED: Unable to determine pool of `RAFP_dom/11:22:33:aa:bb:cc'
--------------------------------------------------------------------
ResourceAllocationFromPool - 03_forward_errs.py: PASS
--------------------------------------------------------------------
ResourceAllocationFromPool - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
ResourceAllocationFromPool - 05_RAPF_err.py: PASS
--------------------------------------------------------------------
ResourcePool - 01_enum.py: PASS
--------------------------------------------------------------------
ResourcePool - 02_rp_gi_errors.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationCapabilities - 02_rpcc_gi_errs.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 01_enum.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 02_rcps_gi_errors.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 03_CreateResourcePool.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 04_CreateChildResourcePool.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 05_AddResourcesToResourcePool.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 06_RemoveResourcesFromResourcePool.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 07_DeleteResourcePool.py: FAIL
ERROR - Exception in create_pool()
ERROR - Exception details: (1, u'CIM_ERR_FAILED: Pool with that name already exists')
ERROR - Error in networkpool creation
InvokeMethod(CreateChildResourcePool): CIM_ERR_FAILED: Pool with that name already exists
--------------------------------------------------------------------
ResourcePoolConfigurationService - 08_CreateDiskResourcePool.py: SKIP
--------------------------------------------------------------------
ResourcePoolConfigurationService - 09_DeleteDiskPool.py: FAIL
ERROR - Exception in create_pool()
ERROR - Exception details: (1, u'CIM_ERR_FAILED: Settings Error: Storage pool creation not supported in this version of libvirt')
ERROR - Failed to create diskpool 'dp_pool'
InvokeMethod(CreateChildResourcePool): CIM_ERR_FAILED: Settings Error: Storage pool creation not supported in this version of libvirt
--------------------------------------------------------------------
ServiceAccessBySAP - 01_forward.py: PASS
--------------------------------------------------------------------
ServiceAccessBySAP - 02_reverse.py: PASS
--------------------------------------------------------------------
ServiceAffectsElement - 01_forward.py: PASS
--------------------------------------------------------------------
ServiceAffectsElement - 02_reverse.py: PASS
--------------------------------------------------------------------
SettingsDefine - 01_forward.py: PASS
--------------------------------------------------------------------
SettingsDefine - 02_reverse.py: PASS
--------------------------------------------------------------------
SettingsDefine - 03_sds_fwd_errs.py: PASS
--------------------------------------------------------------------
SettingsDefine - 04_sds_rev_errs.py: PASS
--------------------------------------------------------------------
SettingsDefineCapabilities - 01_forward.py: FAIL
ERROR - Xen_SettingsDefineCapabilities returned 16 ResourcePool objects instead of 20
--------------------------------------------------------------------
SettingsDefineCapabilities - 03_forward_errs.py: PASS
--------------------------------------------------------------------
SettingsDefineCapabilities - 04_forward_vsmsdata.py: PASS
--------------------------------------------------------------------
SettingsDefineCapabilities - 05_reverse_vsmcap.py: PASS
--------------------------------------------------------------------
SystemDevice - 01_forward.py: PASS
--------------------------------------------------------------------
SystemDevice - 02_reverse.py: PASS
--------------------------------------------------------------------
SystemDevice - 03_fwderrs.py: PASS
--------------------------------------------------------------------
VSSD - 01_enum.py: PASS
--------------------------------------------------------------------
VSSD - 02_bootldr.py: PASS
--------------------------------------------------------------------
VSSD - 03_vssd_gi_errs.py: PASS
--------------------------------------------------------------------
VSSD - 04_vssd_to_rasd.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified with return code 1
ERROR - Failed to Define the domain: VSSDC_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified
--------------------------------------------------------------------
VirtualSystemManagementCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementCapabilities - 02_vsmcap_gi_errs.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 01_definesystem_name.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 02_destroysystem.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 03_definesystem_ess.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 04_definesystem_ers.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 05_destroysystem_neg.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 06_addresource.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 07_addresource_neg.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 08_modifyresource.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 09_procrasd_persist.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 10_hv_version.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 11_define_memrasdunits.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 12_referenced_config.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 13_refconfig_additional_devs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: VirtualDevice property must be unique for each DiskResourceAllocationSettingData in a single guest with return code 1
ERROR - Unable define domain rstest_domain2
ERROR - Unable to define rstest_domain2
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: VirtualDevice property must be unique for each DiskResourceAllocationSettingData in a single guest
--------------------------------------------------------------------
VirtualSystemManagementService - 14_define_sys_disk.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 15_mod_system_settings.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 16_removeresource.py: XFAIL
ERROR - 0 RASD insts for domain/mouse:xen
CIM_ERR_NOT_FOUND: No such instance (no device domain/mouse:xen)
Bug:<00014>
--------------------------------------------------------------------
VirtualSystemManagementService - 17_removeresource_neg.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 18_define_sys_bridge.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 19_definenetwork_ers.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 20_verify_vnc_password.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 21_createVS_verifyMAC.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 22_addmulti_brg_interface.py: XFAIL
ERROR - Error invoking AddRS: add_net_res
ERROR - (1, u'CIM_ERR_FAILED: Unable to change (0) device: Error 0')
ERROR - Failed to destroy Virtual Network 'my_network1'
InvokeMethod(AddResourceSettings): CIM_ERR_FAILED: Unable to change (0) device: Error 0
Bug:<00015>
--------------------------------------------------------------------
VirtualSystemManagementService - 23_verify_duplicate_mac_err.py: PASS
--------------------------------------------------------------------
VirtualSystemMigrationCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemMigrationCapabilities - 02_vsmc_gi_errs.py: PASS
--------------------------------------------------------------------
VirtualSystemMigrationService - 01_migratable_host.py: FAIL
ERROR - Error create domain dom_migrate
--------------------------------------------------------------------
VirtualSystemMigrationService - 02_host_migrate_type.py: FAIL
ERROR - Failed to enumerate the class of Xen_MigrationJob
ERROR - Exception in fn get_migration_job_instance() details: (1, u'CIM_ERR_FAILED: Validation error: on line 1: expected INSTANCE element')
ERROR - Unable to get mig_job instance for 'dom_migrate'
--------------------------------------------------------------------
VirtualSystemMigrationService - 05_migratable_host_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Error start domain dom_migration
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemMigrationService - 06_remote_live_migration.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Error define domain VM_frm_elm3b43.beaverton.ibm.com
ERROR - Error setting up the guest
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemMigrationService - 07_remote_offline_migration.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Error define domain VM_frm_elm3b43.beaverton.ibm.com
ERROR - Error setting up the guest
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemMigrationService - 08_remote_restart_resume_migration.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Error define domain VM_frm_elm3b43.beaverton.ibm.com
ERROR - Error setting up the guest
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemMigrationSettingData - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemMigrationSettingData - 02_vsmsd_gi_errs.py: PASS
--------------------------------------------------------------------
VirtualSystemSettingDataComponent - 01_forward.py: PASS
--------------------------------------------------------------------
VirtualSystemSettingDataComponent - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: VSSDC_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemSettingDataComponent - 03_vssdc_fwd_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Unable to define domain domu1
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemSettingDataComponent - 04_vssdc_rev_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable to start domain domu1
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemSnapshotService - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemSnapshotService - 02_vs_sservice_gi_errs.py: PASS
--------------------------------------------------------------------
VirtualSystemSnapshotService - 03_create_snapshot.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Exception: ('Unable to define %s', 'snapshot_vm')
ERROR - Got CIM error CIM_ERR_NOT_FOUND: Referenced domain `snapshot_vm' does not exist: Domain not found: xenUnifiedDomainLookupByName with return code 6
ERROR - Failed to remove snapshot file for snapshot_vm
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
InvokeMethod(DestroySystem): CIM_ERR_NOT_FOUND: Referenced domain `snapshot_vm' does not exist: Domain not found: xenUnifiedDomainLookupByName
--------------------------------------------------------------------
VirtualSystemSnapshotServiceCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemSnapshotServiceCapabilities - 02_vs_sservicecap_gi_errs.py: PASS
--------------------------------------------------------------------
1
0

Test Run Summary (Aug 07 2009): Xen on Red Hat Enterprise Linux Server release 5.3 (Tikanga) with Pegasus
by Deepti B. Kalakeri 07 Aug '09
by Deepti B. Kalakeri 07 Aug '09
07 Aug '09
=================================================
Test Run Summary (Aug 07 2009): Xen on Red Hat Enterprise Linux Server release 5.3 (Tikanga) with Pegasus
=================================================
Distro: Red Hat Enterprise Linux Server release 5.3 (Tikanga)
Kernel: 2.6.18-128.el5xen
libvirt: 0.3.3
Hypervisor: Xen 3.1.0
CIMOM: Pegasus 2.7.1
Libvirt-cim revision: 940
Libvirt-cim changeset: 8690e2eca76e
Cimtest revision:
Cimtest changeset:
=================================================
FAIL : 90
XFAIL : 1
SKIP : 3
PASS : 71
-----------------
Total : 165
=================================================
FAIL Test Summary:
ComputerSystem - 01_enum.py: FAIL
ComputerSystem - 03_defineVS.py: FAIL
ComputerSystem - 04_defineStartVS.py: FAIL
ComputerSystem - 05_activate_defined_start.py: FAIL
ComputerSystem - 06_paused_active_suspend.py: FAIL
ComputerSystem - 22_define_suspend.py: FAIL
ComputerSystem - 23_pause_pause.py: FAIL
ComputerSystem - 32_start_reboot.py: FAIL
ComputerSystem - 33_suspend_reboot.py: FAIL
ComputerSystem - 35_start_reset.py: FAIL
ComputerSystem - 40_RSC_start.py: FAIL
ComputerSystem - 42_cs_gi_errs.py: FAIL
ComputerSystemIndication - 01_created_indication.py: FAIL
ComputerSystemMigrationJobIndication - 01_csmig_ind_for_offline_mig.py: FAIL
ElementAllocatedFromPool - 01_forward.py: FAIL
ElementAllocatedFromPool - 02_reverse.py: FAIL
ElementAllocatedFromPool - 03_reverse_errs.py: FAIL
ElementAllocatedFromPool - 04_forward_errs.py: FAIL
ElementCapabilities - 01_forward.py: FAIL
ElementCapabilities - 02_reverse.py: FAIL
ElementConforms - 01_forward.py: FAIL
ElementConforms - 04_ectp_rev_errs.py: FAIL
ElementSettingData - 03_esd_assoc_with_rasd_errs.py: FAIL
EnabledLogicalElementCapabilities - 01_enum.py: FAIL
EnabledLogicalElementCapabilities - 02_elecap_gi_errs.py: FAIL
HostSystem - 02_hostsystem_to_rasd.py: FAIL
HostSystem - 03_hs_to_settdefcap.py: FAIL
HostedAccessPoint - 01_forward.py: FAIL
HostedAccessPoint - 02_reverse.py: FAIL
HostedDependency - 02_reverse.py: FAIL
HostedDependency - 03_enabledstate.py: FAIL
HostedDependency - 04_reverse_errs.py: FAIL
LogicalDisk - 01_disk.py: FAIL
LogicalDisk - 02_nodevs.py: FAIL
LogicalDisk - 03_ld_gi_errs.py: FAIL
Memory - 01_memory.py: FAIL
Memory - 03_mem_gi_errs.py: FAIL
NetworkPort - 02_np_gi_errors.py: FAIL
Processor - 01_processor.py: FAIL
Processor - 02_definesys_get_procs.py: FAIL
Processor - 03_proc_gi_errs.py: FAIL
Profile - 02_profile_to_elec.py: FAIL
RASD - 01_verify_rasd_fields.py: FAIL
RASD - 02_enum.py: FAIL
RASD - 04_disk_rasd_size.py: FAIL
RASD - 05_disk_rasd_emu_type.py: FAIL
ResourceAllocationFromPool - 01_forward.py: FAIL
ResourceAllocationFromPool - 02_reverse.py: FAIL
ResourcePoolConfigurationService - 07_DeleteResourcePool.py: FAIL
ResourcePoolConfigurationService - 09_DeleteDiskPool.py: FAIL
ServiceAccessBySAP - 01_forward.py: FAIL
ServiceAccessBySAP - 02_reverse.py: FAIL
ServiceAffectsElement - 01_forward.py: FAIL
ServiceAffectsElement - 02_reverse.py: FAIL
SettingsDefine - 01_forward.py: FAIL
SettingsDefine - 02_reverse.py: FAIL
SettingsDefine - 03_sds_fwd_errs.py: FAIL
SettingsDefine - 04_sds_rev_errs.py: FAIL
SettingsDefineCapabilities - 01_forward.py: FAIL
SystemDevice - 01_forward.py: FAIL
SystemDevice - 02_reverse.py: FAIL
SystemDevice - 03_fwderrs.py: FAIL
VSSD - 01_enum.py: FAIL
VSSD - 03_vssd_gi_errs.py: FAIL
VSSD - 04_vssd_to_rasd.py: FAIL
VirtualSystemManagementService - 01_definesystem_name.py: FAIL
VirtualSystemManagementService - 02_destroysystem.py: FAIL
VirtualSystemManagementService - 06_addresource.py: FAIL
VirtualSystemManagementService - 08_modifyresource.py: FAIL
VirtualSystemManagementService - 09_procrasd_persist.py: FAIL
VirtualSystemManagementService - 12_referenced_config.py: FAIL
VirtualSystemManagementService - 13_refconfig_additional_devs.py: FAIL
VirtualSystemManagementService - 15_mod_system_settings.py: FAIL
VirtualSystemManagementService - 17_removeresource_neg.py: FAIL
VirtualSystemManagementService - 18_define_sys_bridge.py: FAIL
VirtualSystemManagementService - 19_definenetwork_ers.py: FAIL
VirtualSystemManagementService - 20_verify_vnc_password.py: FAIL
VirtualSystemManagementService - 21_createVS_verifyMAC.py: FAIL
VirtualSystemManagementService - 22_addmulti_brg_interface.py: FAIL
VirtualSystemManagementService - 23_verify_duplicate_mac_err.py: FAIL
VirtualSystemMigrationService - 01_migratable_host.py: FAIL
VirtualSystemMigrationService - 02_host_migrate_type.py: FAIL
VirtualSystemMigrationService - 05_migratable_host_errs.py: FAIL
VirtualSystemMigrationService - 06_remote_live_migration.py: FAIL
VirtualSystemMigrationService - 07_remote_offline_migration.py: FAIL
VirtualSystemMigrationService - 08_remote_restart_resume_migration.py: FAIL
VirtualSystemSettingDataComponent - 02_reverse.py: FAIL
VirtualSystemSettingDataComponent - 03_vssdc_fwd_errs.py: FAIL
VirtualSystemSettingDataComponent - 04_vssdc_rev_errs.py: FAIL
VirtualSystemSnapshotService - 03_create_snapshot.py: FAIL
=================================================
XFAIL Test Summary:
VirtualSystemManagementService - 16_removeresource.py: XFAIL
=================================================
SKIP Test Summary:
ComputerSystem - 02_nosystems.py: SKIP
NetworkPort - 03_user_netport.py: SKIP
ResourcePoolConfigurationService - 08_CreateDiskResourcePool.py: SKIP
=================================================
Full report:
--------------------------------------------------------------------
AllocationCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
AllocationCapabilities - 02_alloccap_gi_errs.py: PASS
--------------------------------------------------------------------
ComputerSystem - 01_enum.py: FAIL
ERROR - Provider does not report system `error', but virsh does
ERROR - Provider does not report system `Domain-0', but virsh does
ERROR - Provider does not report system `dom_migrate', but virsh does
CIM_ERR_FAILED: Unable to get domain information: internal error domain information incomplete, missing id
--------------------------------------------------------------------
ComputerSystem - 02_nosystems.py: SKIP
--------------------------------------------------------------------
ComputerSystem - 03_defineVS.py: FAIL
ERROR - Failed to enumerate the class of Xen_ComputerSystem
ERROR - Exception: No cs instance returned
ERROR - Error: property values are not set for VS domU1
CIM_ERR_FAILED: Unable to get domain information: internal error domain information incomplete, missing id
--------------------------------------------------------------------
ComputerSystem - 04_defineStartVS.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to Start the dom: domguest
ERROR - Property values not set properly for domguest
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
ComputerSystem - 05_activate_defined_start.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - ERROR: VS 'DomST1' was not defined
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ComputerSystem - 06_paused_active_suspend.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Exception variable: VS 'DomST1' was not defined
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ComputerSystem - 22_define_suspend.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Error: Unable to define domgst
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ComputerSystem - 23_pause_pause.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Exception: 'Unable start dom 'cs_test_domain''
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
ComputerSystem - 27_define_pause_errs.py: PASS
--------------------------------------------------------------------
ComputerSystem - 32_start_reboot.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Exception: Failed to define the guest: cs_test_domain
ERROR - Got CIM error CIM_ERR_NOT_FOUND: Referenced domain `cs_test_domain' does not exist: Domain not found: xenUnifiedDomainLookupByName with return code 6
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
InvokeMethod(DestroySystem): CIM_ERR_NOT_FOUND: Referenced domain `cs_test_domain' does not exist: Domain not found: xenUnifiedDomainLookupByName
--------------------------------------------------------------------
ComputerSystem - 33_suspend_reboot.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Exception: Failed to define the guest: test_domain
ERROR - Got CIM error CIM_ERR_NOT_FOUND: Unable to retrieve domain name: Error 0 with return code 6
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
InvokeMethod(DestroySystem): CIM_ERR_NOT_FOUND: Unable to retrieve domain name: Error 0
--------------------------------------------------------------------
ComputerSystem - 35_start_reset.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Exception: Unable start dom 'cs_test_domain'
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
ComputerSystem - 40_RSC_start.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Exception: Unable start dom 'cs_test_domain'
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
ComputerSystem - 41_cs_to_settingdefinestate.py: PASS
--------------------------------------------------------------------
ComputerSystem - 42_cs_gi_errs.py: FAIL
CIM_ERR_FAILED: Unable to get domain information: internal error domain information incomplete, missing id
--------------------------------------------------------------------
ComputerSystemIndication - 01_created_indication.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Exception: Unable to generate indication
ERROR - Failed to start domain: domU
ERROR - Exception: Unable to generate indication
ERROR - Got CIM error CIM_ERR_NOT_FOUND: Referenced domain `domU' does not exist: Domain not found: xenUnifiedDomainLookupByName with return code 6
ERROR - Unable to destroy domU
ERROR - Exception: Unable to generate indication
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
CIM_ERR_NOT_FOUND: Referenced domain `domU' does not exist: Domain not found: xenUnifiedDomainLookupByName
InvokeMethod(DestroySystem): CIM_ERR_NOT_FOUND: Referenced domain `domU' does not exist: Domain not found: xenUnifiedDomainLookupByName
--------------------------------------------------------------------
ComputerSystemMigrationJobIndication - 01_csmig_ind_for_offline_mig.py: FAIL
--------------------------------------------------------------------
ElementAllocatedFromPool - 01_forward.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to start the dom: 'hd_domain'
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
ElementAllocatedFromPool - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: 'eafp_domain'
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ElementAllocatedFromPool - 03_reverse_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: hd_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ElementAllocatedFromPool - 04_forward_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified with return code 1
ERROR - Failed to define the dom: hd_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified
--------------------------------------------------------------------
ElementCapabilities - 01_forward.py: FAIL
ERROR - IndexError : list index out of range
Traceback (most recent call last):
File "./lib/XenKvmLib/const.py", line 139, in do_try
File "01_forward.py", line 138, in main
if elec[0].classname != cn:
IndexError: list index out of range
ERROR - None
CIM_ERR_INVALID_CLASS: Linux_ComputerSystem
CIM_ERR_NOT_FOUND: Referenced domain `error' does not exist: Domain not found: xenUnifiedDomainLookupByName
--------------------------------------------------------------------
ElementCapabilities - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: dom_elecap
CIM_ERR_INVALID_CLASS: Linux_ComputerSystem
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ElementCapabilities - 03_forward_errs.py: PASS
--------------------------------------------------------------------
ElementCapabilities - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
ElementCapabilities - 05_hostsystem_cap.py: PASS
--------------------------------------------------------------------
ElementConforms - 01_forward.py: FAIL
ERROR - Unable to start domain domU
--------------------------------------------------------------------
ElementConforms - 02_reverse.py: PASS
--------------------------------------------------------------------
ElementConforms - 03_ectp_fwd_errs.py: PASS
--------------------------------------------------------------------
ElementConforms - 04_ectp_rev_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Unable to define domain domU
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ElementSettingData - 01_forward.py: PASS
--------------------------------------------------------------------
ElementSettingData - 03_esd_assoc_with_rasd_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to start the dom: hd_domain1
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
EnabledLogicalElementCapabilities - 01_enum.py: FAIL
ERROR - Failed to enumerate the class of Xen_EnabledLogicalElementCapabilities
--------------------------------------------------------------------
EnabledLogicalElementCapabilities - 02_elecap_gi_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to Start the dom: qemu
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
HostSystem - 01_enum.py: PASS
--------------------------------------------------------------------
HostSystem - 02_hostsystem_to_rasd.py: FAIL
ERROR - Xen_HostedDependency returned 0 Xen_ComputerSystem objects
CIM_ERR_INVALID_CLASS: Linux_ComputerSystem
CIM_ERR_FAILED: Unable to get domain information: internal error domain information incomplete, missing id
--------------------------------------------------------------------
HostSystem - 03_hs_to_settdefcap.py: FAIL
ERROR - Xen_SettingsDefineCapabilities returned 16 RASD objects instead of 20 for DiskPool/cimtest-diskpool
CIM_ERR_INVALID_CLASS: Linux_ComputerSystem
--------------------------------------------------------------------
HostSystem - 04_hs_to_EAPF.py: PASS
--------------------------------------------------------------------
HostSystem - 05_hs_gi_errs.py: PASS
--------------------------------------------------------------------
HostSystem - 06_hs_to_vsms.py: PASS
--------------------------------------------------------------------
HostedAccessPoint - 01_forward.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable start dom 'domu1'
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
HostedAccessPoint - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable start dom 'domu1'
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
HostedDependency - 01_forward.py: PASS
--------------------------------------------------------------------
HostedDependency - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: hd_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
HostedDependency - 03_enabledstate.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: hd_domain1
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
HostedDependency - 04_reverse_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to start the dom: hd_domain1
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
HostedResourcePool - 01_forward.py: PASS
--------------------------------------------------------------------
HostedResourcePool - 02_reverse.py: PASS
--------------------------------------------------------------------
HostedResourcePool - 03_forward_errs.py: PASS
--------------------------------------------------------------------
HostedResourcePool - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
HostedService - 01_forward.py: PASS
--------------------------------------------------------------------
HostedService - 02_reverse.py: PASS
--------------------------------------------------------------------
HostedService - 03_forward_errs.py: PASS
--------------------------------------------------------------------
HostedService - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
KVMRedirectionSAP - 01_enum_KVMredSAP.py: PASS
--------------------------------------------------------------------
LogicalDisk - 01_disk.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - AttributeError : 'NoneType' object has no attribute 'Name'
Traceback (most recent call last):
File "./lib/XenKvmLib/const.py", line 139, in do_try
File "01_disk.py", line 60, in main
if dev.Name != test_dev:
AttributeError: 'NoneType' object has no attribute 'Name'
ERROR - None
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
CIM_ERR_NOT_FOUND: No such instance (no domain for test_domain/xvda): Domain not found: xenUnifiedDomainLookupByName
--------------------------------------------------------------------
LogicalDisk - 02_nodevs.py: FAIL
ERROR - Xen_LogicalDisk returned 1 instead of empty list
CIM_ERR_FAILED: Unable to get domain information: internal error domain information incomplete, missing id
--------------------------------------------------------------------
LogicalDisk - 03_ld_gi_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to Define the dom: hd_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
Memory - 01_memory.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - AttributeError : 'NoneType' object has no attribute 'ConsumableBlocks'
Traceback (most recent call last):
File "./lib/XenKvmLib/const.py", line 139, in do_try
File "01_memory.py", line 59, in main
if dev.ConsumableBlocks > dev.NumberOfBlocks:
AttributeError: 'NoneType' object has no attribute 'ConsumableBlocks'
ERROR - None
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
CIM_ERR_NOT_FOUND: No such instance (no domain for test_domain/mem): Domain not found: xenUnifiedDomainLookupByName
--------------------------------------------------------------------
Memory - 02_defgetmem.py: PASS
--------------------------------------------------------------------
Memory - 03_mem_gi_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to Create the dom: domU
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
NetworkPort - 01_netport.py: PASS
--------------------------------------------------------------------
NetworkPort - 02_np_gi_errors.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Define domain failed!
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
NetworkPort - 03_user_netport.py: SKIP
--------------------------------------------------------------------
Processor - 01_processor.py: FAIL
ERROR - Domain not started, we're not able to check vcpu
--------------------------------------------------------------------
Processor - 02_definesys_get_procs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Exception: Failed to define the guest: test_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
Processor - 03_proc_gi_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the guest: proc_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
Profile - 01_enum.py: PASS
--------------------------------------------------------------------
Profile - 02_profile_to_elec.py: FAIL
ERROR - Xen_ComputerSystem with domguest was not returned
--------------------------------------------------------------------
Profile - 03_rprofile_gi_errs.py: PASS
--------------------------------------------------------------------
RASD - 01_verify_rasd_fields.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable to start the domain VSSDC_dom
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
RASD - 02_enum.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified with return code 1
ERROR - Failed to Define the domain: VSSDC_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified
--------------------------------------------------------------------
RASD - 03_rasd_errs.py: PASS
--------------------------------------------------------------------
RASD - 04_disk_rasd_size.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to test RASD: Failed to define the dom: diskrasd_test
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
RASD - 05_disk_rasd_emu_type.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to call DefineSystem()
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
RASD - 06_parent_net_pool.py: PASS
--------------------------------------------------------------------
RASD - 07_parent_disk_pool.py: PASS
--------------------------------------------------------------------
RedirectionService - 01_enum_crs.py: PASS
--------------------------------------------------------------------
RedirectionService - 02_enum_crscap.py: PASS
--------------------------------------------------------------------
RedirectionService - 03_RedirectionSAP_errs.py: PASS
--------------------------------------------------------------------
ReferencedProfile - 01_verify_refprof.py: PASS
--------------------------------------------------------------------
ReferencedProfile - 02_refprofile_errs.py: PASS
--------------------------------------------------------------------
ResourceAllocationFromPool - 01_forward.py: FAIL
ERROR - No RASD associated with NetworkPool/cimtest-networkpool
--------------------------------------------------------------------
ResourceAllocationFromPool - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to Define the domain: RAFP_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ResourceAllocationFromPool - 03_forward_errs.py: PASS
--------------------------------------------------------------------
ResourceAllocationFromPool - 04_reverse_errs.py: PASS
--------------------------------------------------------------------
ResourceAllocationFromPool - 05_RAPF_err.py: PASS
--------------------------------------------------------------------
ResourcePool - 01_enum.py: PASS
--------------------------------------------------------------------
ResourcePool - 02_rp_gi_errors.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationCapabilities - 02_rpcc_gi_errs.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 01_enum.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 02_rcps_gi_errors.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 03_CreateResourcePool.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 04_CreateChildResourcePool.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 05_AddResourcesToResourcePool.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 06_RemoveResourcesFromResourcePool.py: PASS
--------------------------------------------------------------------
ResourcePoolConfigurationService - 07_DeleteResourcePool.py: FAIL
ERROR - Exception in create_pool()
ERROR - Exception details: (1, u'CIM_ERR_FAILED: Pool with that name already exists')
ERROR - Error in networkpool creation
InvokeMethod(CreateChildResourcePool): CIM_ERR_FAILED: Pool with that name already exists
--------------------------------------------------------------------
ResourcePoolConfigurationService - 08_CreateDiskResourcePool.py: SKIP
--------------------------------------------------------------------
ResourcePoolConfigurationService - 09_DeleteDiskPool.py: FAIL
ERROR - Exception in create_pool()
ERROR - Exception details: (1, u'CIM_ERR_FAILED: Settings Error: Storage pool creation not supported in this version of libvirt')
ERROR - Failed to create diskpool 'dp_pool'
InvokeMethod(CreateChildResourcePool): CIM_ERR_FAILED: Settings Error: Storage pool creation not supported in this version of libvirt
--------------------------------------------------------------------
ServiceAccessBySAP - 01_forward.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable start dom 'domu1'
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
ServiceAccessBySAP - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable start dom 'domu1'
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
ServiceAffectsElement - 01_forward.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: SAE_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
ServiceAffectsElement - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: SAE_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
SettingsDefine - 01_forward.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to Create the dom: domu1
ERROR - NameError : global name 'cmxl' is not defined
Traceback (most recent call last):
File "./lib/XenKvmLib/const.py", line 139, in do_try
File "01_forward.py", line 144, in main
status, cxml = setup_env(options.ip, options.virt)
File "01_forward.py", line 58, in setup_env
return FAIL, cmxl
NameError: global name 'cmxl' is not defined
ERROR - None
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
SettingsDefine - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51728 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable start dom 'virtgst'
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51728 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
SettingsDefine - 03_sds_fwd_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to start the dom: domu1
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
SettingsDefine - 04_sds_rev_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: domu1
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
SettingsDefineCapabilities - 01_forward.py: FAIL
ERROR - Xen_SettingsDefineCapabilities returned 16 ResourcePool objects instead of 20
--------------------------------------------------------------------
SettingsDefineCapabilities - 03_forward_errs.py: PASS
--------------------------------------------------------------------
SettingsDefineCapabilities - 04_forward_vsmsdata.py: PASS
--------------------------------------------------------------------
SettingsDefineCapabilities - 05_reverse_vsmcap.py: PASS
--------------------------------------------------------------------
SystemDevice - 01_forward.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51728 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable to start domain test_domain
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51728 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
SystemDevice - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Unable to define domain test_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
SystemDevice - 03_fwderrs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the domain 'virt1'
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VSSD - 01_enum.py: FAIL
ERROR - Missing VSSD instance for the system VSSD_dom
CIM_ERR_FAILED: Unable to get VSSD instance from Domain
--------------------------------------------------------------------
VSSD - 02_bootldr.py: PASS
--------------------------------------------------------------------
VSSD - 03_vssd_gi_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - error while define of VS
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VSSD - 04_vssd_to_rasd.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified with return code 1
ERROR - Failed to Define the domain: VSSDC_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: No Network bridge name specified
--------------------------------------------------------------------
VirtualSystemManagementCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementCapabilities - 02_vsmcap_gi_errs.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 01_definesystem_name.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to start the defined domain: test_domain
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemManagementService - 02_destroysystem.py: FAIL
ERROR - Failed to start the dom: test_domain
--------------------------------------------------------------------
VirtualSystemManagementService - 03_definesystem_ess.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 04_definesystem_ers.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 05_destroysystem_neg.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 06_addresource.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: rstest_domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemManagementService - 07_addresource_neg.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 08_modifyresource.py: FAIL
ERROR - Failed to start the dom: rstest_domain
--------------------------------------------------------------------
VirtualSystemManagementService - 09_procrasd_persist.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Unable to define procrasd_persist_dom
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemManagementService - 10_hv_version.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 11_define_memrasdunits.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 12_referenced_config.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable to start rstest_domain
ERROR - Unable to start rstest_domain
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemManagementService - 13_refconfig_additional_devs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: VirtualDevice property must be unique for each DiskResourceAllocationSettingData in a single guest with return code 1
ERROR - Unable define domain rstest_domain2
ERROR - Unable to define rstest_domain2
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: VirtualDevice property must be unique for each DiskResourceAllocationSettingData in a single guest
--------------------------------------------------------------------
VirtualSystemManagementService - 14_define_sys_disk.py: PASS
--------------------------------------------------------------------
VirtualSystemManagementService - 15_mod_system_settings.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: rstest_domain
ERROR - Got CIM error CIM_ERR_NOT_FOUND: Unable to retrieve domain name: Error 0 with return code 6
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
InvokeMethod(DestroySystem): CIM_ERR_NOT_FOUND: Unable to retrieve domain name: Error 0
--------------------------------------------------------------------
VirtualSystemManagementService - 16_removeresource.py: XFAIL
ERROR - 0 RASD insts for domain/mouse:xen
CIM_ERR_NOT_FOUND: No such instance (no device domain/mouse:xen)
Bug:<00014>
--------------------------------------------------------------------
VirtualSystemManagementService - 17_removeresource_neg.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Failed to define the dom: domain
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemManagementService - 18_define_sys_bridge.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to start the dom: brgtest_domain
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemManagementService - 19_definenetwork_ers.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Got desc: 'CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses', exp 'Valid param '
ERROR - Defing domain with invalid network name None gave unexpected rc code 1 and description:
CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemManagementService - 20_verify_vnc_password.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to start the dom: vncpasswd_domain
ERROR - Got CIM error CIM_ERR_NOT_FOUND: Referenced domain `vncpasswd_domain' does not exist: Domain not found: xenUnifiedDomainLookupByName with return code 6
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
InvokeMethod(DestroySystem): CIM_ERR_NOT_FOUND: Referenced domain `vncpasswd_domain' does not exist: Domain not found: xenUnifiedDomainLookupByName
--------------------------------------------------------------------
VirtualSystemManagementService - 21_createVS_verifyMAC.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Exception details: Failed to start the defined domain: dom_mac_notspecified
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemManagementService - 22_addmulti_brg_interface.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - global name 'default_dom' is not defined
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemManagementService - 23_verify_duplicate_mac_err.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Got desc: 'CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')', exp 'Conflicting MAC Addresses'
ERROR - Got unexpected rc code 1 and description CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemMigrationCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemMigrationCapabilities - 02_vsmc_gi_errs.py: PASS
--------------------------------------------------------------------
VirtualSystemMigrationService - 01_migratable_host.py: FAIL
ERROR - Error create domain dom_migrate
--------------------------------------------------------------------
VirtualSystemMigrationService - 02_host_migrate_type.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Failed to lookup resulting system with return code 1
ERROR - CS instance not returned for dom_migrate.
ERROR - Error start domain dom_migrate
InvokeMethod(DefineSystem): CIM_ERR_FAILED: Failed to lookup resulting system
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
CIM_ERR_NOT_FOUND: Referenced domain `dom_migrate' does not exist: invalid argument in __virGetDomain
--------------------------------------------------------------------
VirtualSystemMigrationService - 05_migratable_host_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Error start domain dom_migration
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemMigrationService - 06_remote_live_migration.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Error define domain VM_frm_elm3b43.beaverton.ibm.com
ERROR - Error setting up the guest
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemMigrationService - 07_remote_offline_migration.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Error define domain VM_frm_elm3b43.beaverton.ibm.com
ERROR - Error setting up the guest
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemMigrationService - 08_remote_restart_resume_migration.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Error to start domain VM_frm_elm3b43.beaverton.ibm.com
ERROR - Error setting up the guest
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemMigrationSettingData - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemMigrationSettingData - 02_vsmsd_gi_errs.py: PASS
--------------------------------------------------------------------
VirtualSystemSettingDataComponent - 01_forward.py: PASS
--------------------------------------------------------------------
VirtualSystemSettingDataComponent - 02_reverse.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51728 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Failed to start the dom: VSSDC_dom
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51728 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemSettingDataComponent - 03_vssdc_fwd_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses with return code 1
ERROR - Unable to define domain domu1
InvokeMethod(DefineSystem): CIM_ERR_FAILED: ResourceSettings Error: Conflicting MAC Addresses
--------------------------------------------------------------------
VirtualSystemSettingDataComponent - 04_vssdc_rev_errs.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Unable to start domain domu1
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemSnapshotService - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemSnapshotService - 02_vs_sservice_gi_errs.py: PASS
--------------------------------------------------------------------
VirtualSystemSnapshotService - 03_create_snapshot.py: FAIL
ERROR - Got CIM error CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.') with return code 1
ERROR - Exception: Failed to start the defined domain: snapshot_vm
ERROR - Failed to remove snapshot file for snapshot_vm
InvokeMethod(RequestStateChange): CIM_ERR_FAILED: Unable to start domain: POST operation failed: (xend.err 'Device 51712 (vbd) could not be connected.\nFile /tmp/default-xen-dimage is loopback-mounted through /dev/loop0,\nwhich is mounted in a guest domain,\nand so cannot be mounted now.')
--------------------------------------------------------------------
VirtualSystemSnapshotServiceCapabilities - 01_enum.py: PASS
--------------------------------------------------------------------
VirtualSystemSnapshotServiceCapabilities - 02_vs_sservicecap_gi_errs.py: PASS
--------------------------------------------------------------------
2
1

07 Aug '09
Hello everyone,
I like to resubmit the patch based on suggestions form Deepti Kalakeri. I would
like to submit the testcse to verify duplicate UUID as a separate patch, so
its not included in this patchset.
Thx
yogi
1
2

06 Aug '09
Hi,
I'm trying to perform a live move of a domU using libvirt-cim, but I'm receiving a CIM_ERR_NOT_SUPPORTED exception.
I have attached the request and response xmls.
The same operation when tried through virsh command worked.
Please let me know if I'm missing something here.
Thanks for the help.
Regards,
Sandeep
The following are the details of the 2 machines.
Source Xen host: RHEL 5.3
The virsh comamnd that worked:
virsh migrate --live Copy_Copy_RHEL52VM1 xen:/// xenmigr://15.154.102.20/
Libvirt and libvirt-cim Versions:
[root@RHEL53Xen1 xen]# rpm -qa | grep -i libvirt
libvirt-0.3.3-14.el5
libvirt-devel-0.3.3-14.el5
libvirt-cim-0.5.1-4.el5
libvirt-python-0.3.3-14.el5
RHEL Version:
[root@RHEL53Xen1 xen]# cat /etc/issue
Red Hat Enterprise Linux Server release 5.3 (Tikanga)
Kernel \r on an \m
Xen Version:
[root@RHEL53Xen1 xen]# rpm -qa | grep xen
xen-3.0.3-80.el5
xen-libs-3.0.3-80.el5
xen-devel-3.0.3-80.el5
kernel-xen-2.6.18-128.el5
Destination Xen host: RHEL 5.2
Libvirt and libvirt-cim Versions:
[root@Rhel52-Xen ~]# rpm -qa | grep libvirt
libvirt-cim-0.4-1
libvirt-0.3.3-7.el5
libvirt-python-0.3.3-7.el5
RHEL Version:
[root@Rhel52-Xen ~]# cat /etc/issue
Red Hat Enterprise Linux Server release 5.2 (Tikanga)
Kernel \r on an \m
Xen Version:
[root@Rhel52-Xen ~]# rpm -qa | grep xen
xen-libs-3.0.3-64.el5
xen-3.0.3-64.el5
kernel-xen-devel-2.6.18-92.el5
kernel-xen-2.6.18-92.el5
4
6

[PATCH] (#3) Add check to catch duplicated VirtualDevice parameter in DiskRASDs
by Richard Maciel 05 Aug '09
by Richard Maciel 05 Aug '09
05 Aug '09
# HG changeset patch
# User Richard Maciel <rmaciel(a)linux.vnet.ibm.com>
# Date 1249492020 10800
# Node ID cf3e493e4b7cd09305b1aba45ca32f82b385ae9d
# Parent 23c0707da946c185f4387a13276b0c9fbf084da2
(#3) Add check to catch duplicated VirtualDevice parameter in DiskRASDs
At the moment of creation of a guest, it is necessary to check if its DiskRASDs all have unique (among themselves) VirtualDevice parameters
#2:
Fixed patch submission date
#3:
Added check for disk type before comparing virtual_dev members
Signed-off-by: Richard Maciel <rmaciel(a)linux.vnet.ibm.com>
diff -r 23c0707da946 -r cf3e493e4b7c src/Virt_VirtualSystemManagementService.c
--- a/src/Virt_VirtualSystemManagementService.c Wed Aug 05 02:05:30 2009 -0300
+++ b/src/Virt_VirtualSystemManagementService.c Wed Aug 05 14:07:00 2009 -0300
@@ -1011,6 +1011,13 @@
for (i = 0; i < *index; i++) {
struct virt_device *ptr = &list[i];
+
+ if (dev->type == CIM_RES_TYPE_DISK &&
+ STREQC(ptr->dev.disk.virtual_dev,
+ dev->dev.disk.virtual_dev))
+ return "VirtualDevice property must be unique for each "
+ "DiskResourceAllocationSettingData in a single "
+ "guest";
if (STREQC(ptr->id, dev->id)) {
CU_DEBUG("Overriding device %s from refconf", ptr->id);
1
0