[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [ovmf baseline-only test] 71194: all pass
This run is configured for baseline tests only. flight 71194 ovmf real [real] http://osstest.xs.citrite.net/~osstest/testlogs/logs/71194/ Perfect :-) All tests in this flight passed as required version targeted for testing: ovmf 0c9fc4b1679946f59efa1aaf11e2e9e1acab303d baseline version: ovmf e06179889586c37101e2900e7f52be9f0da12cda Last test of basis 71193 2017-04-14 08:46:43 Z 0 days Testing same since 71194 2017-04-14 16:48:53 Z 0 days 1 attempts ------------------------------------------------------------ People who touched revisions under test: Hao Wu <hao.a.wu@xxxxxxxxx> Long Qin <qin.long@xxxxxxxxx> Qin Long <qin.long@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 pass 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 0c9fc4b1679946f59efa1aaf11e2e9e1acab303d Author: Long Qin <qin.long@xxxxxxxxx> Date: Fri Apr 14 16:31:51 2017 +0800 CryptoPkg: Correct some minor issues in function comments Correct some minor comment issues in BaseCryptLib.h and CryptPkcs7Verify.c, including: - missed "out" in parameter property for ARC4 interfaces; - Wrong Comment tail in Pkcs7GetAttachedContent function Cc: Ting Ye <ting.ye@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qin Long <qin.long@xxxxxxxxx> Reviewed-by: Ye Ting <ting.ye@xxxxxxxxx> commit 8b17683a27cfef7e70008dfccbc17a358ae33df1 Author: Star Zeng <star.zeng@xxxxxxxxx> Date: Tue Apr 11 09:55:51 2017 +0800 MdeModulePkg CapsuleApp: Add directory support Current CapsuleApp only supports input/output file from rootdirectory. If the CapsuleApp and related file are put into subdirectory, below message will be shown when running the CapsuleApp in shell. "CapsuleApp: capsule image (Capsule image file name) is not found." This patch is to add directory support for CapsuleApp by using shell protocol. Cc: Jiewen Yao <jiewen.yao@xxxxxxxxx> Cc: Feng Tian <feng.tian@xxxxxxxxx> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@xxxxxxxxx> Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx> commit 9c0e4db3db8d102812ca57f6225290c7ba079ad8 Author: Hao Wu <hao.a.wu@xxxxxxxxx> Date: Thu Mar 23 10:45:44 2017 +0800 IntelFrameworkPkg/UefiLib: Avoid mis-calculate of graphic console size The commit adds check in function InternalPrintGraphic() to ensure that the expression: Blt->Width * Blt->Height * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL) will not overflow in the UINTN range. The commit also adds an explicit UINT32 type cast for 'Blt->Width' to avoid possible overflow in the int range for: Blt->Width * Blt->Height Since both Blt->Width and Blt->Height are of type UINT16. They will be promoted to int (signed) first, and then perform the multiplication operation. If the result of multiplication between Blt->Width and Blt->Height exceeds the range of type int, a potential incorrect size will be passed into function AllocateZeroPool(). Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 458cd568b64a0e4159f85a31809e55657db23792 Author: Hao Wu <hao.a.wu@xxxxxxxxx> Date: Thu Mar 23 10:16:23 2017 +0800 MdePkg/UefiLib: Avoid mis-calculate of graphic console size The commit adds check in function InternalPrintGraphic() to ensure that the expression: Blt->Width * Blt->Height * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL) will not overflow in the UINTN range. The commit also adds an explicit UINT32 type cast for 'Blt->Width' to avoid possible overflow in the int range for: Blt->Width * Blt->Height Since both Blt->Width and Blt->Height are of type UINT16. They will be promoted to int (signed) first, and then perform the multiplication operation. If the result of multiplication between Blt->Width and Blt->Height exceeds the range of type int, a potential incorrect size will be passed into function AllocateZeroPool(). Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx> Reviewed-by: Liming Gao <liming.gao@xxxxxxxxx> commit 1860cb00c18c6f0c58336ea15a63889dabd31d15 Author: Hao Wu <hao.a.wu@xxxxxxxxx> Date: Wed Mar 22 10:08:55 2017 +0800 MdeModulePkg/DxeCore: Add ASSERT to ensure no subtract underflow For function SplitRecord() in file PropertiesTable.c, there is a potential subtract underflow case for line: return TotalNewRecordCount - 1; However, such case will not happen since the logic in function SplitTable() ensure that when calling SplitRecord(), the variable 'TotalNewRecordCount' will not be zero when performing the subtraction. It will be handled in the previous if statement: if (MaxSplitRecordCount == 0) { CopyMem (NewRecord, OldRecord, DescriptorSize); return 0; } Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx> Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx> commit 89558f1653e1820f0f824d3299122100b0a6d82c Author: Hao Wu <hao.a.wu@xxxxxxxxx> Date: Mon Mar 20 15:07:27 2017 +0800 MdeModulePkg/PiSmmCore: Fix potentially uninitialized local variable Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@xxxxxxxxx> Reviewed-by: Jiewen Yao <jiewen.yao@xxxxxxxxx> _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |