diff --git a/CryptoPkg/Test/UnitTest/Library/BaseCryptLib/UnitTestMain.c b/CryptoPkg/Test/UnitTest/Library/BaseCryptLib/UnitTestMain.c index d0c1c7a4f7e0..48d463b8ad49 100644 --- a/CryptoPkg/Test/UnitTest/Library/BaseCryptLib/UnitTestMain.c +++ b/CryptoPkg/Test/UnitTest/Library/BaseCryptLib/UnitTestMain.c @@ -8,6 +8,12 @@ **/ #include "TestBaseCryptLib.h" +VOID +EFIAPI +ProcessLibraryConstructorList ( + VOID + ); + /** Initialize the unit test framework, suite, and unit tests for the sample unit tests and run the unit tests. @@ -76,5 +82,6 @@ main ( char *argv[] ) { + ProcessLibraryConstructorList (); return UefiTestMain (); }