I found one more place that is missing EFIAPI: STATIC VOID UnitTestLogFailure ( IN FAILURE_TYPE FailureType, IN CONST CHAR8 *Format, ... ) {
I will fix this one too in the PR. Mike From: Kinney, Michael D <michael.d.kin...@intel.com> Sent: Monday, May 3, 2021 5:28 PM To: devel@edk2.groups.io; bret.barke...@microsoft.com; Getnat Ejigu <getnatej...@gmail.com>; Kinney, Michael D <michael.d.kin...@intel.com> Cc: Sean Brogan <sean.bro...@microsoft.com> Subject: RE: [edk2-devel] [EXTERNAL] [PATCH v1 1/1] UnitTestFrameworkPkg: Sample unit test hangs when running in OVMF/QEMU Reviewed-by: Michael D Kinney mailto:michael.d.kin...@intel.com Yes. I will submit PR. Mike From: mailto:devel@edk2.groups.io <mailto:devel@edk2.groups.io> On Behalf Of Bret Barkelew via groups.io Sent: Friday, April 30, 2021 2:16 PM To: mailto:devel@edk2.groups.io; Getnat Ejigu <mailto:getnatej...@gmail.com> Cc: Kinney, Michael D <mailto:michael.d.kin...@intel.com>; Sean Brogan <mailto:sean.bro...@microsoft.com> Subject: Re: [edk2-devel] [EXTERNAL] [PATCH v1 1/1] UnitTestFrameworkPkg: Sample unit test hangs when running in OVMF/QEMU Mike, Can you stage the PR for this? Thanks! - Bret From: mailto:bret.barkelew=microsoft....@groups.io Sent: Friday, April 30, 2021 2:16 PM To: mailto:getnatej...@gmail.com; mailto:devel@edk2.groups.io Cc: mailto:michael.d.kin...@intel.com; mailto:sean.bro...@microsoft.com Subject: Re: [edk2-devel] [EXTERNAL] [PATCH v1 1/1] UnitTestFrameworkPkg: Sample unit test hangs when running in OVMF/QEMU Reviewed-by: Bret Barkelew <mailto:bret.barke...@microsoft.com> - Bret From: mailto:getnatej...@gmail.com Sent: Friday, April 30, 2021 2:07 PM To: mailto:devel@edk2.groups.io Cc: mailto:michael.d.kin...@intel.com; mailto:sean.bro...@microsoft.com; mailto:bret.barke...@microsoft.com Subject: [EXTERNAL] [PATCH v1 1/1] UnitTestFrameworkPkg: Sample unit test hangs when running in OVMF/QEMU Sample unit tests in UnitTestFrameworkPkg hangs when running in OVMF/QEMU environment. Build target is X64/GCC5. Fixing this issue by adding EFIAPI to ReportPrint() function that use VA_ARGS. Signed-off-by: Getnat Ejigu <mailto:getnatej...@gmail.com> Cc: Michael D Kinney <mailto:michael.d.kin...@intel.com> Cc: Sean Brogan <mailto:sean.bro...@microsoft.com> Cc: Bret Barkelew <mailto:bret.barke...@microsoft.com> --- UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLib.c | 1 + UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibConOut.c | 1 + UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibDebugLib.c | 1 + 3 files changed, 3 insertions(+) diff --git a/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLib.c b/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLib.c index 66c9db457d80..7f7443a23391 100644 --- a/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLib.c +++ b/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLib.c @@ -11,6 +11,7 @@ #include <Library/DebugLib.h> VOID +EFIAPI ReportPrint ( IN CONST CHAR8 *Format, ... diff --git a/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibConOut.c b/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibConOut.c index cfb0c5972bd1..db5402d6a210 100644 --- a/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibConOut.c +++ b/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibConOut.c @@ -12,6 +12,7 @@ #include <Library/DebugLib.h> VOID +EFIAPI ReportPrint ( IN CONST CHAR8 *Format, ... diff --git a/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibDebugLib.c b/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibDebugLib.c index 1402d0ef83e2..1d62c6a37117 100644 --- a/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibDebugLib.c +++ b/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibDebugLib.c @@ -11,6 +11,7 @@ #include <Library/DebugLib.h> VOID +EFIAPI ReportPrint ( IN CONST CHAR8 *Format, ... -- 2.25.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#74715): https://edk2.groups.io/g/devel/message/74715 Mute This Topic: https://groups.io/mt/82492217/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-