[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-devel] [libvirt test] 33117: regressions - FAIL



flight 33117 libvirt real [real]
http://www.chiark.greenend.org.uk/~xensrcts/logs/33117/

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 build-amd64-libvirt           5 libvirt-build             fail REGR. vs. 32648
 build-i386-libvirt            5 libvirt-build             fail REGR. vs. 32648
 build-armhf-libvirt           5 libvirt-build             fail REGR. vs. 32648

Tests which did not succeed, but are not blocking:
 test-amd64-i386-libvirt       1 build-check(1)               blocked  n/a
 test-amd64-amd64-libvirt      1 build-check(1)               blocked  n/a
 test-armhf-armhf-libvirt      1 build-check(1)               blocked  n/a

version targeted for testing:
 libvirt              262d913ffc6a20ceafbf4ba2f174854a0a583805
baseline version:
 libvirt              2360fe5d24175835d3f5fd1c7e8e6e13addab629

------------------------------------------------------------
People who touched revisions under test:
  Chunyan Liu <cyliu@xxxxxxxx>
  Jim Fehlig <jfehlig@xxxxxxxx>
  Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
------------------------------------------------------------

jobs:
 build-amd64                                                  pass    
 build-armhf                                                  pass    
 build-i386                                                   pass    
 build-amd64-libvirt                                          fail    
 build-armhf-libvirt                                          fail    
 build-i386-libvirt                                           fail    
 build-amd64-pvops                                            pass    
 build-armhf-pvops                                            pass    
 build-i386-pvops                                             pass    
 test-amd64-amd64-libvirt                                     blocked 
 test-armhf-armhf-libvirt                                     blocked 
 test-amd64-i386-libvirt                                      blocked 


------------------------------------------------------------
sg-report-flight on osstest.cam.xci-test.com
logs: /home/xc_osstest/logs
images: /home/xc_osstest/images

Logs, config files, etc. are available at
    http://www.chiark.greenend.org.uk/~xensrcts/logs

Test harness code can be found at
    http://xenbits.xensource.com/gitweb?p=osstest.git;a=summary


Not pushing.

------------------------------------------------------------
commit 262d913ffc6a20ceafbf4ba2f174854a0a583805
Author: Chunyan Liu <cyliu@xxxxxxxx>
Date:   Tue Dec 23 14:36:05 2014 +0800

    Add tests to xmconfigtest
    
    Add tests to testing HVM default features (pae, acpi, apic)
    conversion from xm config to libvirt xml. If no pae|acpi|apic
    specified in xm config, after conversion, libvirt xml should
    by default include:
     <features>
       <pae/>
       <apic/>
       <acpi/>
     </features>
    
    Signed-off-by: Chunyan Liu <cyliu@xxxxxxxx>

commit 90ed3bd0aac6d29f0c184bd5e168fc9956c04848
Author: Chunyan Liu <cyliu@xxxxxxxx>
Date:   Tue Dec 23 14:36:04 2014 +0800

    xenconfig: set HVM pae/apic/acpi/ default to 1
    
    According to xm.config manual, HVM pae|apic|acpi feature default
    is 1 (enabled). But in conversion from xm config to libvirt xml,
    if xm config doesn't contain pae|apic|acpi, it sets default value
    to 0, this causes some problems in HVM guest.
    
    Update parser codes to set HVM pae|apic|acpi default value to 1
    to match xm config convension.
    
    Signed-off-by: Chunyan Liu <cyliu@xxxxxxxx>

commit 4f524212ce614e1ca84b34dd8330a48957c8f823
Author: Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
Date:   Thu Sep 11 07:10:34 2014 +0300

    libxl: Add support for parsing/formating Xen XL config
    
    Now that xenconfig supports parsing and formatting Xen's
    XL config format, integrate it into the libxl driver's
    connectDomainXML{From,To}Native functions.
    
    Signed-off-by: Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
    Signed-off-by: Jim Fehlig <jfehlig@xxxxxxxx>

commit 6b818d3b09f4e74ac2ea1d4020896be1e6871867
Author: Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
Date:   Thu Sep 11 07:10:35 2014 +0300

    tests: Tests for the xen-xl parser
    
    add tests for the xen_xl config parser
    
    Signed-off-by: Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
    Signed-off-by: Jim Fehlig <jfehlig@xxxxxxxx>

commit 2c78051a14acfb7aba078d569b1632dfe0ca0853
Author: Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
Date:   Thu Sep 11 07:10:33 2014 +0300

    src/xenconfig: Xen-xl parser
    
    Introduce a Xen xl parser
    
    This parser allows for users to convert the new xl disk format and
    spice graphics config to libvirt xml format and vice versa. Regarding
    the spice graphics config, the code is pretty much straight forward.
    For the disk {formating, parsing}, this parser takes care of the new
    xl format which include positional parameters and key/value parameters.
    In xl format disk config a <diskspec> consists of parameters separated by
    commas. If the parameters do not contain an '=' they are automatically
    assigned to certain options following the order below
    
       target, format, vdev, access
    
    The above are the only mandatory parameters in the <diskspec> but there
    are many more disk config options. These options can be specified as
    key=value pairs. This takes care of the rest of the options such as
    
      devtype, backend, backendtype, script, direct-io-safe,
    
    The positional paramters can also be specified in key/value form
    for example
    
        /dev/vg/guest-volume,,hda
        /dev/vg/guest-volume,raw,hda,rw
        format=raw, vdev=hda, access=rw, target=/dev/vg/guest-volume
    
    are interpleted to one config.
    
    In xm format, the above diskspec would be written as
    
    phy:/dev/vg/guest-volume,hda,w
    
    The disk parser is based on the same parser used successfully by
    the Xen project for several years now.  Ian Jackson authored the
    scanner, which is used by this commit with mimimal changes.  Only
    the PREFIX option is changed, to produce function and file names
    more consistent with libvirt's convention.
    
    Signed-off-by: Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
    Signed-off-by: Jim Fehlig <jfehlig@xxxxxxxx>

commit 7ad117b2e33039737126ce9df7a267a6f939988d
Author: Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
Date:   Thu Sep 11 07:10:32 2014 +0300

    src/xenconfig: Export helper functions
    
    Export helper functions for reuse in getting values
    from a virConfPtr object
    
    Signed-off-by: Kiarie Kahurani <davidkiarie4@xxxxxxxxx>
    Signed-off-by: Jim Fehlig <jfehlig@xxxxxxxx>

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.