[libvirt] RH EL5 test failure on interfaceshematest and xencapstest

Andy Howell AndyHowell at austin.rr.com
Tue Nov 9 15:13:12 UTC 2010


On 11/08/2010 03:31 PM, Matthias Bolte wrote:
> 2010/11/8 Eric Blake <eblake at redhat.com>:
>> On 11/06/2010 01:30 PM, Andy Howell wrote:
>>>
>>> I'm trying to build a new RPM for libvirt-0.8.5. Two tests are failing:
>>>
>>>   interfaceschematest
>>>   xencapstest
>>>
>>> Are these known errors? Any work-arounds?
>>
>> There were several reports of failures fixed by patches right after the
>> 0.8.5 release, although I'm not sure if applying them will solve all the
>> problems you are facing.
>>
>> For example,
>> https://www.redhat.com/archives/libvir-list/2010-November/msg00085.html
>> lists several commits needed for successful testing across multiple xen
>> header versions.
>>
> 
> No, the problem is different and not specific to libvirt 0.8.5
> 
> xenHypervisorInit is called from xenRegister and detects the
> sys_interface_version. As Andy figured out correctly, the xencapstest
> calls xenHypervisorMakeCapabilitiesInternal with conn == NULL.
> xenHypervisorMakeCapabilitiesInternal then calls
> xenDaemonNodeGetTopology with conn == NULL if sys_interface_version >=
> SYS_IFACE_MIN_VERS_NUMA holds. This is true when you have Xen
> installed, otherwise sys_interface_version is -1. Therefore this test
> will fail when ypu have recent Xen installed.
> 
> I just remember this, because Jim mentioned it quite a while ago on
> IRC and I looked up the details in my logs. At that time I suggested
> to apply this patch/hack to avoid the problem, as
> xenDaemonNodeGetTopology want to talk to a real xend at that point and
> insists in conn != NULL for that.
> 
> 
> diff --git a/src/xen/xen_hypervisor.c b/src/xen/xen_hypervisor.c
> index c5cc880..95b3ca2 100644
> --- a/src/xen/xen_hypervisor.c
> +++ b/src/xen/xen_hypervisor.c
> @@ -2244,8 +2244,7 @@ xenHypervisorBuildCapabilities(virConnectPtr conn,
>                                                 "xenmigr") < 0)
>          goto no_memory;
> 
> -
> -    if (sys_interface_version >= SYS_IFACE_MIN_VERS_NUMA) {
> +    if (sys_interface_version >= SYS_IFACE_MIN_VERS_NUMA && conn != NULL) {
>          if (xenDaemonNodeGetTopology(conn, caps) != 0) {
>              virCapabilitiesFree(caps);
>              return NULL;
> 
> 
> I'm not sure why the interfaceschematest fails, as It works for me.
> 

Matthias,

	Attached is what I'm seeing for the interfaceshematest

Regards,

	Andy



-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: interfaceschematest.failures
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20101109/6d0a39ca/attachment-0001.ksh>


More information about the libvir-list mailing list