mirror of https://github.com/acidanthera/audk.git
UnitTestFrameworkPkg/UnitTestLib: GetActiveFrameworkHandle() no ASSERT()
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4683 Update GetActiveFrameworkHandle() to remove ASSERT() and require caller to check for NULL. This allows GetActiveFrameworkHandle() to be used to determine if the current host-based test environment is framework/cmocka or gtest. In the framework/cmocka host-based environment GetActiveFrameworkHandle() returns non-NULL. In the gtest host-based environment GetActiveFrameworkHandle() returns NULL. Cc: Michael Kubacki <mikuback@linux.microsoft.com> Cc: Sean Brogan <sean.brogan@microsoft.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Michael Kubacki <michael.kubacki@microsoft.com>
This commit is contained in:
parent
81b69f306f
commit
312ccaf81b
|
@ -57,6 +57,10 @@ UnitTestLogFailure (
|
|||
// Get active Framework handle
|
||||
//
|
||||
FrameworkHandle = GetActiveFrameworkHandle ();
|
||||
if (FrameworkHandle == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "%a - FrameworkHandle not initialized\n", __func__));
|
||||
return;
|
||||
}
|
||||
|
||||
//
|
||||
// Convert the message to an ASCII String
|
||||
|
|
|
@ -166,6 +166,10 @@ UnitTestLog (
|
|||
VA_LIST Marker;
|
||||
|
||||
FrameworkHandle = GetActiveFrameworkHandle ();
|
||||
if (FrameworkHandle == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "%a - FrameworkHandle not initialized\n", __func__));
|
||||
return;
|
||||
}
|
||||
|
||||
LogTypePrefix = NULL;
|
||||
|
||||
|
|
|
@ -21,7 +21,6 @@ GetActiveFrameworkHandle (
|
|||
VOID
|
||||
)
|
||||
{
|
||||
ASSERT (mFrameworkHandle != NULL);
|
||||
return mFrameworkHandle;
|
||||
}
|
||||
|
||||
|
|
|
@ -27,7 +27,6 @@ GetActiveFrameworkHandle (
|
|||
VOID
|
||||
)
|
||||
{
|
||||
ASSERT (mFrameworkHandle != NULL);
|
||||
return mFrameworkHandle;
|
||||
}
|
||||
|
||||
|
|
|
@ -826,6 +826,10 @@ SaveFrameworkState (
|
|||
|
||||
Header = NULL;
|
||||
FrameworkHandle = GetActiveFrameworkHandle ();
|
||||
if (FrameworkHandle == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "%a - Could not save state! FrameworkHandle not initialized\n", __func__));
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
//
|
||||
// Return a unique error code if the framework is not set.
|
||||
|
|
Loading…
Reference in New Issue