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

[ovmf baseline-only test] 68346: regressions - FAIL



This run is configured for baseline tests only.

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

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 test-amd64-amd64-xl-qemuu-ovmf-amd64 20 leak-check/check  fail REGR. vs. 68343

version targeted for testing:
 ovmf                 133834858a3ab5ba61ca1dc2bb37d322095fcf07
baseline version:
 ovmf                 3613af913983148a3865e758c2c058912320e4c2

Last test of basis    68343  2017-01-09 05:48:29 Z    0 days
Testing same since    68346  2017-01-09 15:19:45 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Hao Wu <hao.a.wu@xxxxxxxxx>
  Star Zeng <star.zeng@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                          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 133834858a3ab5ba61ca1dc2bb37d322095fcf07
Author: Star Zeng <star.zeng@xxxxxxxxx>
Date:   Mon Jan 9 13:36:41 2017 +0800

    SecurityPkg Tcg2ConfigDxe: Refine debug message and comments
    
    Cc: Chao Zhang <chao.b.zhang@xxxxxxxxx>
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx>
    Reviewed-by: Chao Zhang <chao.b.zhang@xxxxxxxxx>

commit 02263214ef20f1577b62f810016dce801aa95b4f
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Tue Dec 13 16:00:35 2016 +0800

    MdePkg/BaseLib: Add safe string functions [U|A]StrnTo[A|U]StrS
    
    Add the following 2 APIs:
    UnicodeStrnToAsciiStrS
    AsciiStrnToUnicodeStrS
    
    These APIs are used to enhance APIs UnicodeStrToAsciiStrS and
    AsciiStrToUnicodeStrS (without 'n' in names) by:
    1. Adds an input parameter 'Length' to specify the maximum number of
    Ascii/Unicode characters to convert.
    2. Adds an output parameter 'DestinationLength' to indicate the number of
    Ascii/Unicode characters successfully converted.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx>

commit ea2e09218647132e62ac07d54ca2ea8a50617cc7
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Wed Dec 14 11:04:48 2016 +0800

    MdePkg/BaseLib: Enhance the return value for string to uint functions
    
    For the following 8 APIs in MdePkg/BaseLib:
    [Ascii]StrDecimalToUintn
    [Ascii]StrDecimalToUint64
    [Ascii]StrHexToUintn
    [Ascii]StrHexToUint64
    
    They will ASSERT for DEBUG build when the input string exceeds the range
    of UINTN/UINT64. However, for RELEASE build, incorrect value will be
    returned.
    
    This commit refines those APIs to direcly call their enhanced counterparts
    (with trailing 'S' in API names) so as to remove those exceed-range ASSERT
    checks and to make those APIs to return MAX_UINTN/MAX_UINT64 instead.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx>

commit d8af3301a648df3b4eea6933a46f56f1853367d6
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Mon Dec 12 08:58:51 2016 +0800

    MdePkg/BaseLib: Add safe string functions that convert str to value
    
    Add the following 8 APIs:
    [Ascii]StrDecimalToUintnS
    [Ascii]StrDecimalToUint64S
    [Ascii]StrHexToUintnS
    [Ascii]StrHexToUint64S
    
    These safe version APIs are used to enhance their counterpart (APIs
    without trailing 'S' in function names).
    
    These safe version APIs perform checks to the input string and will return
    relative status to reflect the check result:
    When the input string exceeds the range of UINTN/64, these APIs will
    return RETURN_UNSUPPORTED and store MAX_UINTN/64 in the output data.
    When no conversion can be performed for the input string, these APIs will
    return RETURN_SUCCESS and store 0 in the output data.
    
    The optional parameter 'EndPointer', if provided, will point to the
    character that stopped the scan.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx>

commit b590e43ab62775f2127e70ed28c33462599cd508
Author: Hao Wu <hao.a.wu@xxxxxxxxx>
Date:   Fri Dec 9 15:53:06 2016 +0800

    MdePkg/BaseLib: Add safe string functions [Ascii]StrnSizeS
    
    Add StrnSizeS() and AsciiStrnSizeS() APIs.
    
    These 2 safe version APIs are used to replace StrSize() and
    AsciiStrSize(). Those two APIs use similar checks as [Ascii]StrnLenS().
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Jiewen Yao <jiewen.yao@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®.