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

[Xen-devel] [ovmf test] 135150: regressions - FAIL



flight 135150 ovmf real [real]
http://logs.test-lab.xenproject.org/osstest/logs/135150/

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 build-i386-libvirt            6 libvirt-build            fail REGR. vs. 134977
 build-i386-pvops              6 kernel-build             fail REGR. vs. 134977

Tests which did not succeed, but are not blocking:
 test-amd64-i386-xl-qemuu-ovmf-amd64  1 build-check(1)              blocked n/a

version targeted for testing:
 ovmf                 56008eb7f68cd8bf8fec213406e4f3ef16898329
baseline version:
 ovmf                 c2f643479eb3f00d930c461cdec3ba420a36072c

Last test of basis   134977  2019-04-19 04:02:54 Z    4 days
Failing since        135081  2019-04-22 01:42:54 Z    1 days    5 attempts
Testing same since   135107  2019-04-22 09:11:39 Z    0 days    3 attempts

------------------------------------------------------------
People who touched revisions under test:
  Aaron Antone <aanton@xxxxxxxxxxxxx>
  Christian Rodriguez <christian.rodriguez@xxxxxxxxx>
  Fan, ZhijuX <zhijux.fan@xxxxxxxxx>
  Rodriguez, Christian <christian.rodriguez@xxxxxxxxx>
  Xue ShengfengX <shengfengx.xue@xxxxxxxxx>
  Xue, ShengfengX <shengfengx.xue@xxxxxxxxx>
  Yunhua Feng <yunhuax.feng@xxxxxxxxx>
  Zhichao Gao <zhichao.gao@xxxxxxxxx>
  Zhiju.Fan <zhijux.fan@xxxxxxxxx>

jobs:
 build-amd64-xsm                                              pass    
 build-i386-xsm                                               pass    
 build-amd64                                                  pass    
 build-i386                                                   pass    
 build-amd64-libvirt                                          pass    
 build-i386-libvirt                                           fail    
 build-amd64-pvops                                            pass    
 build-i386-pvops                                             fail    
 test-amd64-amd64-xl-qemuu-ovmf-amd64                         pass    
 test-amd64-i386-xl-qemuu-ovmf-amd64                          blocked 


------------------------------------------------------------
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 56008eb7f68cd8bf8fec213406e4f3ef16898329
Author: Christian Rodriguez <christian.rodriguez@xxxxxxxxx>
Date:   Wed Apr 17 03:40:55 2019 +0800

    BaseTools: Hash false success.. minor change in hash invalidation
    
    BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1692
    
    Change part of the hash error handling to invalidate hashes in the
    cache destination not the cache source.
    
    Signed-off-by: Christian Rodriguez <christian.rodriguez@xxxxxxxxx>
    Cc: Bob Feng <bob.c.feng@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
    Reviewed-by: Bob Feng <bob.c.feng@xxxxxxxxx>

commit 35c2af00d8c349f3e0feca0c430034818e64020c
Author: Fan, ZhijuX <zhijux.fan@xxxxxxxxx>
Date:   Thu Apr 18 19:20:46 2019 +0800

    BaseTools:fixed the incorrect autogen makefile which cause build failure.
    
    BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=1729
    
    On some build environment, build fails but on the other build machines,
    build success. This is the regression issue introduced by commit
     05217d210e8da37b47d0be58ec363f7af2fa1c18
    
    As Dict is unordered, an error occurs when extract the index of the Dict
    in the order of the keys after the creation of a new item.
    Keys are indexed inconsistently before and after adding a new item.
    The logic of the program is to store the key's corresponding index as
    reference data in the MakeFile and use it as part of the macro.
    The data model is: $(LIST_%d) % Dict.keys().index(Key)
    So for now, use OrdereDict instead of Dict.
    
    Cc: Bob Feng <bob.c.feng@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Signed-off-by: Zhiju.Fan <zhijux.fan@xxxxxxxxx>
    Reviewed-by: Bob Feng <bob.c.feng@xxxxxxxxx>

commit 452b5ad61ddd360f0e784fd5f0eac83654a8b5c6
Author: Rodriguez, Christian <christian.rodriguez@xxxxxxxxx>
Date:   Thu Apr 18 22:16:10 2019 +0800

    BaseTools: Enhance Bin Cache database to support save the cache
    
    BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1726
    
    V2: Added the platform name to the path
    Add more level sub-directories in the database to support save
    the cache for multiple platforms with multiple tool-chains and
    targets, just like edk2 Build output.
    
    Signed-off-by: Christian Rodriguez <christian.rodriguez@xxxxxxxxx>
    Cc: Bob Feng <bob.c.feng@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
    Reviewed-by: Bob Feng <bob.c.feng@xxxxxxxxx>

commit 0b836855fb4df66f7ca035a7b67a064c0088ed69
Author: Yunhua Feng <yunhuax.feng@xxxxxxxxx>
Date:   Thu Apr 11 12:57:15 2019 +0800

    BaseTools: Sometime write file not immediate to disk
    
    BZ: https://bugzilla.tianocore.org/process_bug.cgi
    
    On Windows OS, sometime the generated file is not immediate saved to disk.
    When run nmake, prompt AutoGen.h not found, and stop build.
    Below blog shows Write-Replace to fix it. This patch uses this way to write
    temp file, then rename the temp file to the real file.
    https://blog.gocept.com/2013/07/15/reliable-file-updates-with-python/
    
    Cc: Bob Feng <bob.c.feng@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
    Signed-off-by: Yunhua Feng <yunhuax.feng@xxxxxxxxx>
    Reviewed-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>

commit e72920ec617ba1fceb114b3bb2a587a8e836734b
Author: Aaron Antone <aanton@xxxxxxxxxxxxx>
Date:   Mon Apr 8 11:03:26 2019 +0800

    MdePkg/UefiDebugLibStdErr: Make it runtime safe
    
    REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1416
    
    After ExitBootServices, some pointer would be invalid such as
    the Protocol pointer and gST. The function depend on those should
    be prevent. So disable the related function while after
    ExitBootServices.
    Change the gST to a internal one, because there will be a cycle
    consume between UefiBootServicesTableLib and DebugLib due to the
    library constructors.
    Also remove the SMM support for this instance.
    
    Cc: Michael D Kinney <michael.d.kinney@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Sean Brogan <sean.brogan@xxxxxxxxxxxxx>
    Cc: Michael Turner <Michael.Turner@xxxxxxxxxxxxx>
    Cc: Bret Barkelew <Bret.Barkelew@xxxxxxxxxxxxx>
    Signed-off-by: Zhichao Gao <zhichao.gao@xxxxxxxxx>
    Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx>

commit 452702d0bc51b608491a96b3634ded7a57727455
Author: Aaron Antone <aanton@xxxxxxxxxxxxx>
Date:   Mon Apr 8 11:00:28 2019 +0800

    MdePkg/UefidebugLibConOut: Make it runtime safe
    
    REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1416
    
    After ExitBootServices, some pointer would be invalid such as
    the Protocol pointer and gST. The function depend on those should
    be prevent. So disable the related function while after
    ExitBootServices.
    Change the gST to a internal one, because there will be a cycle
    consume between UefiBootServicesTableLib and DebugLib due to the
    library constructors.
    Also remove the SMM support for this instance.
    
    Cc: Michael D Kinney <michael.d.kinney@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Sean Brogan <sean.brogan@xxxxxxxxxxxxx>
    Cc: Michael Turner <Michael.Turner@xxxxxxxxxxxxx>
    Cc: Bret Barkelew <Bret.Barkelew@xxxxxxxxxxxxx>
    Signed-off-by: Zhichao Gao <zhichao.gao@xxxxxxxxx>
    Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx>

commit 2b5778c68b631789ffcf96535001ad36643b0d66
Author: Aaron Antone <aanton@xxxxxxxxxxxxx>
Date:   Mon Apr 8 10:48:00 2019 +0800

    MdePkg/UefiDebugLibDebugPortProtocol: Make it runtime safe
    
    REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1416
    
    After ExitBootServices, some pointer would be invalid such as
    the Protocol pointer and gBS. The function depend on those should
    be prevent. So disable the related function while after
    ExitBootServices.
    Change the gBS to a internal one, because there will be a cycle
    consume between UefiBootServicesTableLib and DebugLib due to the
    library constructors.
    Also remove the SMM support for this instance.
    
    Cc: Michael D Kinney <michael.d.kinney@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Sean Brogan <sean.brogan@xxxxxxxxxxxxx>
    Cc: Michael Turner <Michael.Turner@xxxxxxxxxxxxx>
    Cc: Bret Barkelew <Bret.Barkelew@xxxxxxxxxxxxx>
    Signed-off-by: Zhichao Gao <zhichao.gao@xxxxxxxxx>
    Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx>

commit c0b2816d69a27db903ce2eaf1f48fb4719b26bd9
Author: Zhichao Gao <zhichao.gao@xxxxxxxxx>
Date:   Wed Apr 10 13:32:04 2019 +0800

    SignedCapsulePkg: Change the SMM debug lib instance
    
    REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1416
    
    The UefiDebugLibConOut will not support DXE_SMM_DRIVER,
    change UefiDebugLibConOut to BaseDebugLibNull.
    
    Cc: Jiewen Yao <jiewen.yao@xxxxxxxxx>
    Cc: Chao Zhang <chao.b.zhang@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Sean Brogan <sean.brogan@xxxxxxxxxxxxx>
    Cc: Michael Turner <Michael.Turner@xxxxxxxxxxxxx>
    Cc: Bret Barkelew <Bret.Barkelew@xxxxxxxxxxxxx>
    Signed-off-by: Zhichao Gao <zhichao.gao@xxxxxxxxx>
    Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx>

commit 1dc1da58306fae0e00fb21c7b97eb39ba0a75e5e
Author: Zhichao Gao <zhichao.gao@xxxxxxxxx>
Date:   Wed Apr 10 09:17:23 2019 +0800

    MdeModulePkg: Change the SMM debug lib instance
    
    REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1416
    
    The UefiDebugLibConOut will not support DXE_SMM_DRIVER,
    change UefiDebugLibConOut to BaseDebugLibNull.
    
    Cc: Jian J Wang <jian.j.wang@xxxxxxxxx>
    Cc: Hao Wu <hao.a.wu@xxxxxxxxx>
    Cc: Ray Ni <ray.ni@xxxxxxxxx>
    Cc: Star Zeng <star.zeng@xxxxxxxxx>
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Sean Brogan <sean.brogan@xxxxxxxxxxxxx>
    Cc: Michael Turner <Michael.Turner@xxxxxxxxxxxxx>
    Cc: Bret Barkelew <Bret.Barkelew@xxxxxxxxxxxxx>
    Signed-off-by: Zhichao Gao <zhichao.gao@xxxxxxxxx>
    Reviewed-by: Hao Wu <hao.a.wu@xxxxxxxxx>
    Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx>

commit b29e6365c37f60c1e3757bc1fde448102e98854c
Author: Xue, ShengfengX <shengfengx.xue@xxxxxxxxx>
Date:   Thu Apr 18 18:13:22 2019 +0800

    NetworkPkg/UefiPxeBcDxe:Add two PCD to control PXE.
    
    REF:https://bugzilla.tianocore.org/show_bug.cgi?id=1695
    
    Setup need provide an item for user to control IPV46 PXE boot.
    Origin UefiPxeBcDxe driver doesn't have such interface.
    This change added two PCD to control IPV4/6 PXE in PxeBcSupported().
    Platform code should override this two PCD according to Setup value.
    code change no side effect on current PXE function with default PCD.
    
    Signed-off-by: Xue ShengfengX <shengfengx.xue@xxxxxxxxx>
    Cc: Siyuan Fu <siyuan.fu@xxxxxxxxx>
    Cc: Jiaxin Wu <jiaxin.wu@xxxxxxxxx>
    Reviewed-by: Siyuan Fu <siyuan.fu@xxxxxxxxx>

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/xen-devel

 


Rackspace

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