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

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



flight 131338 libvirt real [real]
http://logs.test-lab.xenproject.org/osstest/logs/131338/

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 test-armhf-armhf-libvirt      5 host-ping-check-native   fail REGR. vs. 131311

Tests which did not succeed, but are not blocking:
 test-armhf-armhf-libvirt-raw 13 saverestore-support-check    fail  like 131311
 test-amd64-amd64-libvirt     13 migrate-support-check        fail   never pass
 test-amd64-i386-libvirt      13 migrate-support-check        fail   never pass
 test-amd64-i386-libvirt-xsm  13 migrate-support-check        fail   never pass
 test-amd64-amd64-libvirt-xsm 13 migrate-support-check        fail   never pass
 test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm 11 migrate-support-check 
fail never pass
 test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm 11 migrate-support-check 
fail never pass
 test-amd64-amd64-libvirt-vhd 12 migrate-support-check        fail   never pass
 test-armhf-armhf-libvirt-raw 12 migrate-support-check        fail   never pass

version targeted for testing:
 libvirt              b2485c4ad725fede184b877a753900fd9a37a135
baseline version:
 libvirt              76ddd01ecd27e85f28e9f62641b3b1a2fffc8526

Last test of basis   131311  2018-12-14 09:56:33 Z    2 days
Testing same since   131338  2018-12-15 17:03:51 Z    1 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Daniel P. Berrangé <berrange@xxxxxxxxxx>
  Peter Krempa <pkrempa@xxxxxxxxxx>

jobs:
 build-amd64-xsm                                              pass    
 build-i386-xsm                                               pass    
 build-amd64                                                  pass    
 build-armhf                                                  pass    
 build-i386                                                   pass    
 build-amd64-libvirt                                          pass    
 build-armhf-libvirt                                          pass    
 build-i386-libvirt                                           pass    
 build-amd64-pvops                                            pass    
 build-armhf-pvops                                            pass    
 build-i386-pvops                                             pass    
 test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm           pass    
 test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm            pass    
 test-amd64-amd64-libvirt-xsm                                 pass    
 test-amd64-i386-libvirt-xsm                                  pass    
 test-amd64-amd64-libvirt                                     pass    
 test-armhf-armhf-libvirt                                     fail    
 test-amd64-i386-libvirt                                      pass    
 test-amd64-amd64-libvirt-pair                                pass    
 test-amd64-i386-libvirt-pair                                 pass    
 test-armhf-armhf-libvirt-raw                                 pass    
 test-amd64-amd64-libvirt-vhd                                 pass    


------------------------------------------------------------
sg-report-flight on osstest.test-lab.xenproject.org
logs: /home/logs/logs
images: /home/logs/images

Logs, config files, etc. are available at
    http://logs.test-lab.xenproject.org/osstest/logs

Explanation of these reports, and of osstest in general, is at
    http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README.email;hb=master
    http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README;hb=master

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


Not pushing.

------------------------------------------------------------
commit b2485c4ad725fede184b877a753900fd9a37a135
Author: Daniel P. Berrangé <berrange@xxxxxxxxxx>
Date:   Fri Dec 14 14:10:48 2018 +0000

    cfg.mk: silence the group-qemu-caps command
    
    A missing $(AM_V_GEN) meant the raw command was printed by
    mistake.
    
    Signed-off-by: Daniel P. Berrangé <berrange@xxxxxxxxxx>

commit 1fb73537d764636ce66724173a8a9fe200d35713
Author: Daniel P. Berrangé <berrange@xxxxxxxxxx>
Date:   Fri Dec 14 14:07:08 2018 +0000

    Fix header ifdef check for config-post.h in VPATH build
    
    We must do a substring match, not an exact match since
    there can be an arbitrary virtual path prepended.
    
    Signed-off-by: Daniel P. Berrangé <berrange@xxxxxxxxxx>

commit 0aadf5ffe229a57fc4f4a36481e0809257d5e14e
Author: Peter Krempa <pkrempa@xxxxxxxxxx>
Date:   Wed Dec 5 14:41:18 2018 +0100

    util: error: Put error code messages into an array
    
    Simplify adding of new errors by just adding them to the array of
    messages rather than having to add conversion code.
    
    Additionally most of the messages add the format string part as a suffix
    so we can avoid some of the duplication by using a macro which adds the
    suffix to the original string. This way most messages fit into the 80
    column limit and only 3 exceed 100 colums.
    
    Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx>
    Erik Skultety <eskultet@xxxxxxxxxx>

commit de4cbbb556991251de7d823f6abb2934db464d05
Author: Peter Krempa <pkrempa@xxxxxxxxxx>
Date:   Wed Dec 5 14:33:30 2018 +0100

    util: error: Improve docs for virErrorMsg
    
    Clarify how @info is used and what the returned values look like.
    
    Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx>
    Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx>

commit d9baf0d75b89c1f121109eef4945588d8ef95d54
Author: Peter Krempa <pkrempa@xxxxxxxxxx>
Date:   Mon Nov 12 10:33:01 2018 +0100

    tests: Add test for virErrorMsg message constraints
    
    Make sure that we don't add any broken error message strings any more.
    
    This ensures that both the version with and without additional info is
    populated, the version without info does not have any formatting
    modifiers and the version with info has exactly one.
    
    Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx>
    Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx>

commit 631f72fc7b60177c75161ae9ba4d1df7c8118c06
Author: Peter Krempa <pkrempa@xxxxxxxxxx>
Date:   Mon Nov 12 15:33:02 2018 +0100

    util: error: Export virErrorMsg for use in testsuite
    
    Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx>
    Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx>

commit 2de10ac4920e718ec9a098a7959f4e6d86fd7f97
Author: Peter Krempa <pkrempa@xxxxxxxxxx>
Date:   Thu Dec 13 12:32:29 2018 +0100

    util: error: Reword some unused error messages
    
    Simplify wording of the error string for VIR_ERR_OPEN_FAILED and
    VIR_ERR_CALL_FAILED. The error codes itself are currently unused so it
    will not impact any client.
    
    This will simplify upcomming patch which refactors how we convert these.
    
    Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx>
    Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx>

commit 8f1bfd8fdb89fd10e2d4039ff5f56f2c931f0f91
Author: Peter Krempa <pkrempa@xxxxxxxxxx>
Date:   Mon Nov 12 16:00:03 2018 +0100

    util: error: Add error message versions with info for some error codes
    
    Few error codes were missing the version of the message with additional
    info. In case of the modified messages it's not very likely they'll ever
    report any additional data, but for the sake of consistency we should
    provide them.
    
    Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx>
    Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx>

commit 759bb2110e252c0cc4ede56a777843b4668b67ed
Author: Peter Krempa <pkrempa@xxxxxxxxxx>
Date:   Mon Nov 12 15:30:21 2018 +0100

    util: error: Fix error message strings to play well with additional info
    
    Additional information for an error message is either in form of a
    string or empty. Fix two offenders. One used %d as the format modifier
    and the second one  always expected a string.
    
    Thankfully, neither of the offenders are currently in effect.
    
    Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx>
    Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx>

commit 590cc60de53be60ecab1b6b76936106bd0c6704e
Author: Peter Krempa <pkrempa@xxxxxxxxxx>
Date:   Mon Nov 12 13:17:21 2018 +0100

    include: error: Add enum sentinel for virErrorNumber enum
    
    We do have one for the error domain but not for the error number itself.
    
    Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx>
    Reviewed-by: Erik Skultety <eskultet@xxxxxxxxxx>

commit 568a417224e7b4656b9959b03154d45566480d65
Author: Daniel P. Berrangé <berrange@xxxxxxxxxx>
Date:   Thu Dec 13 14:53:50 2018 +0000

    Enforce a standard header file guard symbol name
    
    Require that all headers are guarded by a symbol named
    
      LIBVIRT_$FILENAME
    
    where $FILENAME is the uppercased filename, with all characters
    outside a-z changed into '_'.
    
    Note we do not use a leading __ because that is technically a
    namespace reserved for the toolchain.
    
    Signed-off-by: Daniel P. Berrangé <berrange@xxxxxxxxxx>

commit 4cfd7090212cbe38572274a7fff2475f4f8e87b7
Author: Daniel P. Berrangé <berrange@xxxxxxxxxx>
Date:   Thu Dec 13 13:32:06 2018 +0000

    Fix many mistakes & inconsistencies in header file layout
    
    This introduces a syntax-check script that validates header files use a
    common layout:
    
      /*
       ...copyright header...
       */
      <one blank line>
      #ifndef SYMBOL
      # define SYMBOL
      ....content....
      #endif /* SYMBOL */
    
    For any file ending priv.h, before the #ifndef, we will require a
    guard to prevent bogus imports:
    
      #ifndef SYMBOL_ALLOW
      # error ....
      #endif /* SYMBOL_ALLOW */
      <one blank line>
    
    The many mistakes this script identifies are then fixed.
    
    Signed-off-by: Daniel P. Berrangé <berrange@xxxxxxxxxx>

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/xen-devel

 


Rackspace

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