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

[Xen-devel] [seabios baseline-only test] 72169: regressions - FAIL



This run is configured for baseline tests only.

flight 72169 seabios real [real]
http://osstest.xs.citrite.net/~osstest/testlogs/logs/72169/

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 test-amd64-amd64-xl-qemuu-win10-i386 16 guest-localmigrate/x10 fail REGR. vs. 
72145

Tests which did not succeed, but are not blocking:
 test-amd64-amd64-xl-qemuu-win7-amd64 17 guest-stop       fail blocked in 72145
 test-amd64-amd64-qemuu-nested-intel 17 debian-hvm-install/l1/l2 fail like 72145
 test-amd64-i386-xl-qemuu-win7-amd64 17 guest-stop              fail like 72145
 test-amd64-i386-xl-qemuu-ws16-amd64 10 windows-install         fail never pass
 test-amd64-amd64-xl-qemuu-ws16-amd64 10 windows-install        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-qemuu-nested-amd 17 debian-hvm-install/l1/l2  fail never pass
 test-amd64-i386-xl-qemuu-win10-i386 17 guest-stop              fail never pass

version targeted for testing:
 seabios              f3d2a156448f006e5d83eb60cb1da2dea6c997bf
baseline version:
 seabios              d6728f301d7e6e31ba0ee2fa51ed4a24feab8860

Last test of basis    72145  2017-09-23 04:20:09 Z    5 days
Testing same since    72169  2017-09-28 14:51:18 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Kevin O'Connor <kevin@xxxxxxxxxxxx>
  Paolo Bonzini <pbonzini@xxxxxxxxxx>

jobs:
 build-amd64-xsm                                              pass    
 build-i386-xsm                                               pass    
 build-amd64                                                  pass    
 build-i386                                                   pass    
 build-amd64-libvirt                                          pass    
 build-i386-libvirt                                           pass    
 build-amd64-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-xl-qemuu-debianhvm-amd64-xsm                pass    
 test-amd64-i386-xl-qemuu-debianhvm-amd64-xsm                 pass    
 test-amd64-amd64-qemuu-nested-amd                            fail    
 test-amd64-i386-qemuu-rhel6hvm-amd                           pass    
 test-amd64-amd64-xl-qemuu-debianhvm-amd64                    pass    
 test-amd64-i386-xl-qemuu-debianhvm-amd64                     pass    
 test-amd64-amd64-xl-qemuu-win7-amd64                         fail    
 test-amd64-i386-xl-qemuu-win7-amd64                          fail    
 test-amd64-amd64-xl-qemuu-ws16-amd64                         fail    
 test-amd64-i386-xl-qemuu-ws16-amd64                          fail    
 test-amd64-amd64-xl-qemuu-win10-i386                         fail    
 test-amd64-i386-xl-qemuu-win10-i386                          fail    
 test-amd64-amd64-qemuu-nested-intel                          fail    
 test-amd64-i386-qemuu-rhel6hvm-intel                         pass    


------------------------------------------------------------
sg-report-flight on osstest.xs.citrite.net
logs: /home/osstest/logs
images: /home/osstest/images

Logs, config files, etc. are available at
    http://osstest.xs.citrite.net/~osstest/testlogs/logs

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


Push not applicable.

------------------------------------------------------------
commit f3d2a156448f006e5d83eb60cb1da2dea6c997bf
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Tue Jul 11 12:30:26 2017 -0400

    virtio: Allocate drive_s storage in low memory
    
    Use the "low" memory segment instead of the f-segment for the drive_s
    storage.  This can help avoid running out of memory in the f-segment.
    
    Tested-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit e5a0b6163703627728f978d079d8c5f449af5fdd
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Tue Jul 11 12:24:50 2017 -0400

    block: Rename disk_op_s->drive_gf to drive_fl
    
    Now that the drive_s struct does not need to be in the f-segment,
    rename references to drive_gf in the generic drive code to drive_fl.
    
    This is just variable renames - no code changes.
    
    Tested-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit 04db972290a6f3c61920fc7498031f477911774e
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Tue Jul 11 12:09:57 2017 -0400

    disk: Don't require the 'struct drive_s' to be in the f-segment
    
    Allow the 'struct drive_s' drive description structure to be in either
    the "low" memory segment or the f-segment.
    
    Tested-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit 5e9a6d5b03b8a7458b1f1d68d6e98f5de16f4e0b
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Tue Jul 11 11:55:49 2017 -0400

    boot: Rename drive_g to drive
    
    The 'struct drive_s' pointer is a 32bit pointer (and boot.c code is
    only compiled in 32bit mode), so avoid using the "_g" suffix on the
    pointer.
    
    Tested-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

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

 


Rackspace

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