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

[ovmf baseline-only test] 68262: tolerable FAIL



This run is configured for baseline tests only.

flight 68262 ovmf real [real]
http://osstest.xs.citrite.net/~osstest/testlogs/logs/68262/

Failures :-/ but no regressions.

Regressions which are regarded as allowable (not blocking):
 test-amd64-i386-xl-qemuu-ovmf-amd64  9 debian-hvm-install      fail like 68258
 test-amd64-amd64-xl-qemuu-ovmf-amd64  9 debian-hvm-install     fail like 68258

version targeted for testing:
 ovmf                 413535bb33d60417d681725af0274086630e7987
baseline version:
 ovmf                 d0c80b8a2de8ac90f51b86cce24e6c9c267ae5b4

Last test of basis    68258  2016-12-22 02:17:43 Z    1 days
Testing same since    68262  2016-12-23 02:20:28 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Hao Wu <hao.a.wu@xxxxxxxxx>

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-xl-qemuu-ovmf-amd64                         fail    
 test-amd64-i386-xl-qemuu-ovmf-amd64                          fail    


------------------------------------------------------------
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 413535bb33d60417d681725af0274086630e7987
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Tue Nov 15 16:25:22 2016 +0800

    NetworkPkg: Refine UintnToAscDecWithFormat functions logic
    
    This commit refines the logic for HttpBootUintnToAscDecWithFormat and
    PxeBcUintnToAscDecWithFormat. It avoids using the decrement operator '--'
    for array index to prevent possible mis-reports by static code checkers.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Fu Siyuan <siyuan.fu@xxxxxxxxx>
    Reviewed-by: Ye Ting <ting.ye@xxxxxxxxx>
    Reviewed-by: Wu Jiaxin <jiaxin.wu@xxxxxxxxx>

commit 81a108434041f6bed629123922772279d98d91a8
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Tue Nov 15 16:12:30 2016 +0800

    MdeModulePkg/UefiPxeBcDxe: Refine the CvtNum function logic
    
    This commit refines the logic for the CvtNum function. It avoids using the
    decrement operator '--' for array index to prevent possible mis-reports by
    static code checkers.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Fu Siyuan <siyuan.fu@xxxxxxxxx>
    Reviewed-by: Ye Ting <ting.ye@xxxxxxxxx>
    Reviewed-by: Wu Jiaxin <jiaxin.wu@xxxxxxxxx>

commit 69e856dfa56cebfba1abf160f3c86458dde850d4
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Tue Nov 15 15:39:44 2016 +0800

    MdeModulePkg/DxeNetLib: Rewrite NetblockChecksum function logic
    
    This commit rewrites the logic for NetblockChecksum. It processes the
    checksum of the left-over byte first to prevent possible mis-reports by
    static code checkers.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Fu Siyuan <siyuan.fu@xxxxxxxxx>
    Reviewed-by: Ye Ting <ting.ye@xxxxxxxxx>
    Reviewed-by: Wu Jiaxin <jiaxin.wu@xxxxxxxxx>

commit 9088c61e2d2de8c844f1850e6a96a69f81c0d010
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Tue Nov 15 13:26:47 2016 +0800

    MdePkg/MemoryLib: Refine InternalMemSetMem16|32|64 functions logic
    
    This commit refines the logic for InternalMemSetMem16|32|64 functions. It
    avoids using the decrement operator '--' for array index to prevent
    possible mis-reports by static code checkers.
    
    Please note that those modified functions are only consumed within
    MemoryLib by APIs SetMem16|32|64, and those APIs will handle the case when
    the input number of bytes to set is 0. Hence, the behavior of APIs
    SetMem16|32|64 is not changed.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Michael Kinney <michael.d.kinney@xxxxxxxxx>

commit 753a18f965cb9cd9e48d376a6c71823548eeb3a0
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Wed Dec 7 10:39:03 2016 +0800

    MdePkg/BaseLib: Add an additional check within (Ascii)StrnCmp
    
    This commit adds an addtional check in AsciiStrnCmp and StrnCmp. It
    explicitly checks the end of the sting pointed by 'SecondString' to make
    the code logic easier for reading and to prevent possible mis-reports by
    static code checkers.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Michael Kinney <michael.d.kinney@xxxxxxxxx>

commit c07c517cc51a4f947022aa5eebe2aace326137e5
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Tue Nov 15 09:59:37 2016 +0800

    MdePkg/BaseLib: Refine (Ascii)StrnLenS functions logic
    
    This commit refines the logic for AsciiStrnLenS and StrnLenS. It makes the
    logic more straightforward to prevent possible mis-reports by static code
    checkers.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx>

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