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

[seabios baseline-only test] 71250: regressions - FAIL



This run is configured for baseline tests only.

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

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 test-amd64-amd64-xl-qemuu-win7-amd64 15 guest-localmigrate/x10 fail REGR. vs. 
71243
 test-amd64-amd64-xl-qemuu-winxpsp3 17 guest-start/win.repeat fail REGR. vs. 
71243

Regressions which are regarded as allowable (not blocking):
 test-amd64-i386-xl-qemuu-win7-amd64 17 guest-start/win.repeat fail blocked in 
71243
 test-amd64-amd64-qemuu-nested-intel 16 debian-hvm-install/l1/l2 fail like 71243
 test-amd64-i386-xl-qemuu-winxpsp3-vcpus1  9 windows-install    fail like 71243

Tests which did not succeed, but are not blocking:
 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-amd64-qemuu-nested-amd 16 debian-hvm-install/l1/l2  fail never pass

version targeted for testing:
 seabios              3fdabaee7d4c36231fe2f052b2d3464dba690acc
baseline version:
 seabios              19fdcca467ad3436d68ef88899b4dcd78154a9c6

Last test of basis    71243  2017-04-29 21:16:47 Z    4 days
Testing same since    71250  2017-05-03 20:20:55 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Kevin O'Connor <kevin@xxxxxxxxxxxx>
  Roman Kagan <rkagan@xxxxxxxxxxxxx>

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-qemuu-nested-intel                          fail    
 test-amd64-i386-qemuu-rhel6hvm-intel                         pass    
 test-amd64-i386-xl-qemuu-winxpsp3-vcpus1                     fail    
 test-amd64-amd64-xl-qemuu-winxpsp3                           fail    
 test-amd64-i386-xl-qemuu-winxpsp3                            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 3fdabaee7d4c36231fe2f052b2d3464dba690acc
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Tue May 2 20:02:01 2017 -0400

    src: Minor - remove tab characters that slipped into SeaBIOS C code
    
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit 3198c06b7b5457eecf5fbc6fd47fbea300a843e7
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:09 2017 +0300

    lsi-scsi: try to enumerate luns with REPORT LUNS
    
    Enumerate active luns with REPORT LUNS and, if that fails[*], fall back
    to sequentially enumerating them up to (arbitrarily chosen) #8 [**].
    
    [*] in current QEMU, REPORT LUNS does fail in lsi53c895a because the
    returned data is smaller than the allocation length which is (wrongly)
    considered an underflow
    
    [**] in current QEMU, luns above 0 are not supported in lsi53c895a, so
    this patch is here only for completeness.
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit 11277846e819b9eef3db5ac833a6a47f95f5ef15
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:08 2017 +0300

    lsi-scsi: reset in case of a serious problem
    
    When the device reports a serious problem via SIST[01] registers, it
    needs to be reset, otherwise the following requests will most likely
    fail, too.
    
    In particular, REPORT LUNS which fails (wrongly) with underflow in QEMU
    makes all the following requests fail, too, rendering the device
    unusable.
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit cf480dd3edd851db8ad62342937e25c064960b31
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:07 2017 +0300

    mpt-scsi: try to enumerate luns with REPORT LUNS
    
    Enumerate active luns with REPORT LUNS and, if that fails[*], fall back
    to sequentially enumerating them up to (arbitrarily chosen) #8.
    
    Note that this patch also makes mpt_scsi_cmd accept luns other than 0;
    I've no idea what was the original motivation not to, and what can break
    due to this change (nothing broke in my basic tests with QEMU).
    
    [*] in current QEMU, REPORT LUNS does fail in mptsas1068 because the
    returned data is smaller than the allocation length which is (wrongly)
    considered an underflow.
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit 0a6e0a8ddd3b3654e772268050be4fbee0d88a08
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:06 2017 +0300

    pvscsi: fix the comment about lun enumeration
    
    The comment in pvscsi_scan_target (presumably c&p-ed from another
    driver) reads that REPORTS LUNS should better be used to enumerate the
    luns on the target.
    
    However, according to the Linux driver, the device supports no more than
    a single lun per target.
    
    So adjust the comment to tell exactly that.
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit 8579fd20c89f0bbc258d6eedb993ecb1bf431027
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:05 2017 +0300

    usb-uas: enumerate luns with REPORT LUNS
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit 3aadef4fd9ce7671c9cc1559c64cb439510856d9
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:04 2017 +0300

    esp-scsi: enumerate luns with REPORT LUNS
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit 69ebdef9bdb7f0f4f7bd9b5f30ef0bf687d6c918
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:03 2017 +0300

    virtio-scsi: enumerate luns with REPORT LUNS
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit 750188dfb35f61f1533f1138d6972b19f36f1a2c
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:02 2017 +0300

    blockcmd: generic SCSI luns enumeration
    
    Add two generic functions to discover active LUNs on a SCSI target.
    
    The functions take a temporary drive descriptor on the target, and a
    callback to create a new drive descriptor with a new LUN using the
    temporary one as a template.
    
    One of the functions performs REPORT LUNS on the temporary drive to
    obtain the list of candidate luns; the other sequentially iterates the
    lun numbers up to the given maximum, and is meant as a fallback.  Both
    functions return the number of successfully created drive descriptors,
    or a negative number if an error occured.
    
    This will allow to lift the limitation of most of the SCSI drivers that
    support booting off the LUN #0 only.
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit 177aecfcf4161c53f503782e68608284b198c0f9
Author: Roman Kagan <rkagan@xxxxxxxxxxxxx>
Date:   Wed Apr 26 17:18:01 2017 +0300

    blockcmd: accept only disks and CD-ROMs
    
    Luns that report to INQUIRY with a type other than CD-ROM are considered
    disks.  This isn't necessarily the case; working with such luns as disks
    may lead to unpredictable results.
    
    So bail out if the lun is neither CD-ROM nor disk.
    
    Signed-off-by: Roman Kagan <rkagan@xxxxxxxxxxxxx>

commit 6f090f868dcdc089a669b3664f9564ef8f65d0ea
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Tue Apr 25 13:04:41 2017 -0400

    boot: Increase description size in boot menu
    
    Increase the boot menu description size so that menu items up to 80
    characters display without truncation.
    
    Reported-by: Rene Shuster <rene.shuster@xxxxxxxxxxxx>
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

_______________________________________________
osstest-output mailing list
osstest-output@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/cgi-bin/mailman/listinfo/osstest-output

 


Rackspace

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