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

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



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

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 test-armhf-armhf-libvirt      6 xen-boot                  fail REGR. vs. 94142

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

version targeted for testing:
 libvirt              4b3a46ca6a8e836b75801bd27198c28cfe33f698
baseline version:
 libvirt              9055faebd426b44ad2c3bb97d6b8b0dd3496ab35

Last test of basis    94142  2016-05-14 04:22:47 Z    1 days
Testing same since    94338  2016-05-15 04:20:41 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Michal Privoznik <mprivozn@xxxxxxxxxx>

jobs:
 build-amd64-xsm                                              pass    
 build-armhf-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-armhf-armhf-libvirt-xsm                                 fail    
 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-qcow2                               fail    
 test-armhf-armhf-libvirt-raw                                 fail    
 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 4b3a46ca6a8e836b75801bd27198c28cfe33f698
Author: Michal Privoznik <mprivozn@xxxxxxxxxx>
Date:   Mon Apr 18 16:15:35 2016 +0200

    tests: Introduce check-file-access.pl
    
    This script will check output generated by virtestmock against a
    white list. All non matching records found are printed out. So
    far, the white list is rather sparse at the moment.
    This test should be ran only after all other tests finished, and
    should cleanup the temporary file before their execution. Because
    I'm unable to reflect these requirements in Makefile.am
    correctly, I've introduced new target 'check-access' under which
    this test is available.
    
    Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx>

commit 6326865e6b9ac21e1569d51d414cb29913999442
Author: Michal Privoznik <mprivozn@xxxxxxxxxx>
Date:   Mon Apr 18 14:10:33 2016 +0200

    virtestmock: Print invalid file accesses into a file
    
    All the accesses to files outside our build or source directories
    are now identified and appended into a file for later processing.
    The location of the file that contains all the records can be
    controlled via VIR_TEST_FILE_ACCESS env variable and defaults to
    abs_builddir "/test_file_access.txt".
    
    The script that will process the access file is to be added in
    next commit.
    
    Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx>

commit 47d2dc831ac94cc2eb9518b887e513233b063777
Author: Michal Privoznik <mprivozn@xxxxxxxxxx>
Date:   Fri May 13 14:08:29 2016 +0200

    tests: Introduce global mock library
    
    The intent is that this library is going to be called every time
    to check if we are not touching anything outside srcdir or
    builddir.
    
    Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx>

commit 86d1705a8ace349b078616569418e6b7e2eca1aa
Author: Michal Privoznik <mprivozn@xxxxxxxxxx>
Date:   Fri May 13 13:42:13 2016 +0200

    virmock.h: Introduce VIR_MOCK_CALL_STAT
    
    There is some magic going on when it comes to stat() or lstat().
    Basically, stat() can either be a regular function, an inline
    function that calls __xstat(_STAT_VER, ...) or a macro that does
    the same as the inline func. Don't ask why is that, just read the
    documentation in sys/stat.h and make sure you have a bucket next
    to you. Anyway, currently there will not be both stat and __xstat
    symbols at the same time, as one of them gets overwritten to the
    other one during compilation. But this is not true anymore once
    we start chaining our mocking libraries. Therefore we need a
    wrapper that calls desired function from glibc.
    
    Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx>

commit a1ffedc682de6a37fac19a2c9ae108acdab8deb0
Author: Michal Privoznik <mprivozn@xxxxxxxxxx>
Date:   Fri May 13 12:46:35 2016 +0200

    securityselinuxhelper: Adapt to virmock.h
    
    Instead of introducing our own wrapper for dlsym()
    we can use the one provided by virmock.h.
    
    Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx>

commit ca88c0e7b2b45ef6dce4b3e33cf0f1e388b29725
Author: Michal Privoznik <mprivozn@xxxxxxxxxx>
Date:   Fri May 13 12:46:35 2016 +0200

    nssmock: Adapt to virmock.h
    
    Instead of introducing our own wrapper for dlsym()
    we can use the one provided by virmock.h.
    
    Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx>

commit d16b7a8853da94961d1bfb7dcf6164f7396c0811
Author: Michal Privoznik <mprivozn@xxxxxxxxxx>
Date:   Fri May 13 12:46:35 2016 +0200

    vircgroupmock: Adapt to virmock.h
    
    Instead of introducing our own wrapper for dlsym()
    we can use the one provided by virmock.h.
    
    Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx>

commit 57c484dbacccf87034d435104aafef4fe73b573c
Author: Michal Privoznik <mprivozn@xxxxxxxxxx>
Date:   Fri May 13 12:32:00 2016 +0200

    virpcimock: Adapt to virmock.h
    
    Instead of introducing our own wrapper for dlsym()
    we can use the one provided by virmock.h.
    
    Signed-off-by: Michal Privoznik <mprivozn@xxxxxxxxxx>

_______________________________________________
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®.