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

[Xen-devel] [ovmf baseline-only test] 75431: trouble: blocked/broken



This run is configured for baseline tests only.

flight 75431 ovmf real [real]
http://osstest.xensource.com/osstest/logs/75431/

Failures and problems with tests :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 build-amd64-xsm                 <job status>                 broken
 build-i386                      <job status>                 broken
 build-amd64-pvops               <job status>                 broken
 build-i386-xsm                  <job status>                 broken
 build-amd64                     <job status>                 broken
 build-i386-pvops                <job status>                 broken

Tests which did not succeed, but are not blocking:
 test-amd64-amd64-xl-qemuu-ovmf-amd64  1 build-check(1)             blocked n/a
 build-amd64-libvirt           1 build-check(1)               blocked  n/a
 test-amd64-i386-xl-qemuu-ovmf-amd64  1 build-check(1)              blocked n/a
 build-i386-libvirt            1 build-check(1)               blocked  n/a
 build-amd64                   4 host-install(4)       broken baseline untested
 build-i386                    4 host-install(4)       broken baseline untested
 build-i386-pvops              4 host-install(4)       broken baseline untested
 build-amd64-xsm               4 host-install(4)       broken baseline untested
 build-i386-xsm                4 host-install(4)       broken baseline untested
 build-amd64-pvops             4 host-install(4)       broken baseline untested

version targeted for testing:
 ovmf                 47f15da16053f031bcf7c50f6960bd0f6c83d2db
baseline version:
 ovmf                 aa52648c1e6f26b6b8734119ab8f6ba2890a1dad

Last test of basis    75428  2018-10-16 03:50:28 Z    0 days
Testing same since    75431  2018-10-16 09:20:59 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Hess Chen <hesheng.chen@xxxxxxxxx>
  Jaben Carsey <jaben.carsey@xxxxxxxxx>
  Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
  Zhiju.Fan <zhijux.fan@xxxxxxxxx>
  zhijufan <zhijux.fan@xxxxxxxxx>

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


------------------------------------------------------------
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.xensource.com/osstest/logs

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

broken-job build-amd64-xsm broken
broken-job build-i386 broken
broken-job build-amd64-pvops broken
broken-job build-i386-xsm broken
broken-job build-amd64 broken
broken-job build-i386-pvops broken
broken-step build-amd64 host-install(4)
broken-step build-i386 host-install(4)
broken-step build-i386-pvops host-install(4)
broken-step build-amd64-xsm host-install(4)
broken-step build-i386-xsm host-install(4)
broken-step build-amd64-pvops host-install(4)

Push not applicable.

------------------------------------------------------------
commit 47f15da16053f031bcf7c50f6960bd0f6c83d2db
Author: Hess Chen <hesheng.chen@xxxxxxxxx>
Date:   Mon Oct 15 16:29:09 2018 +0800

    BaseTools/EOT: Change to call a program instead of calling Python API.
    
    Update the EOT tool to call the program itself instead of calling the 
Python API when parsing FV images.
    
    Contributed-under: TianoCore Contribution Agreement 1.0
    Signed-off-by: Hess Chen <hesheng.chen@xxxxxxxxx>
    Reviewed-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
    Acked-by: Jaben Carsey <jaben.carsey@xxxxxxxxx>

commit ff4d0f851d43a0ad70a87e8b74b7303fc215361f
Author: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
Date:   Mon Oct 15 21:20:00 2018 +0800

    BaseTools: Support to use struct name as datum type before max size
    
    Original it hard code to use "VOID*", this patch extend it to both
    support VOID* and valid struct name.
    
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
    Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx>

commit 0fab42ba27c207c0fe268a435704b949d79e7725
Author: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
Date:   Mon Oct 15 20:43:47 2018 +0800

    BaseTools: Fix bugs use special character in the --pcd option
    
    Cases:
    --pcd Token.Name="!"
    --pcd Token.Name="\'W&\'"
    --pcd Token.Name="2*h"
    
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
    Reviewed-by: Jaben Carsey <jaben.carsey@xxxxxxxxx>

commit 03c36c36a3aaa9e8a6975ebdec35a9533d947ef5
Author: zhijufan <zhijux.fan@xxxxxxxxx>
Date:   Mon Oct 15 09:02:31 2018 +0800

    BaseTools: Add check for the string type whether is same
    
    Relational and equality operators require both operands to be of
    the same type.
    Treat the string 'A' and "A" as same type, but for "A" and L"A"
    are not same type since one is general string, another is unicode
    string.
    
    True:'A'<'B', "A"<"B" 'A'<"B", L'A'<L'B', L"A"<L"B", L'A'<L"B"
    Error:'A'<L'B', 'A'<L"B", "A'<L'B'
    
    Cc: Liming Gao <liming.gao@xxxxxxxxx>
    Cc: Yonghong Zhu <yonghong.zhu@xxxxxxxxx>
    Contributed-under: TianoCore Contribution Agreement 1.1
    Signed-off-by: Zhiju.Fan <zhijux.fan@xxxxxxxxx>
    Reviewed-by: Jaben Carsey <jaben.carsey@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®.