Skip to content

Commit f47d897

Browse files
philnoh2mergify[bot]
authored andcommitted
UnitTestFrameworkPkg: Avoid duplicate library function names
There are duplicate library function names between 2 Unit Test libraries (UnitTestPeiServicesTablePointerLib and UnitTestUefiBootServicesTableLib). There are 3 functions (UnitTestAllocatePages, UnitTestAllocatePool and UnitTestFreePage). This update avoids the duplication and prevents a build error when building a Unit Test application that links the libraries based on UnitTestFrameworkPkg. Signed-off-by: Phil Noh <[email protected]>
1 parent 9ac1704 commit f47d897

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

UnitTestFrameworkPkg/Library/UnitTestPeiServicesTablePointerLib/UnitTestPeiServicesTablePointerLib.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ EFI_PEI_SERVICES mPeiServices = {
3737
UnitTestFfsFindSectionData, // FfsFindSectionData
3838

3939
UnitTestInstallPeiMemory, // InstallPeiMemory
40-
UnitTestAllocatePages, // AllocatePages
41-
UnitTestAllocatePool, // AllocatePool
40+
UnitTestPeiAllocatePages, // AllocatePages
41+
UnitTestPeiAllocatePool, // AllocatePool
4242
(EFI_PEI_COPY_MEM)CopyMem,
4343
(EFI_PEI_SET_MEM)SetMem,
4444

@@ -55,7 +55,7 @@ EFI_PEI_SERVICES mPeiServices = {
5555
UnitTestFfsFindSectionData3, // FfsFindSectionData3
5656
UnitTestFfsGetFileInfo2, // FfsGetFileInfo2
5757
UnitTestResetSystem2, // ResetSystem2
58-
UnitTestFreePages, // FreePages
58+
UnitTestPeiFreePages, // FreePages
5959
};
6060

6161
PEI_CORE_INSTANCE mPrivateData;

UnitTestFrameworkPkg/Library/UnitTestPeiServicesTablePointerLib/UnitTestPeiServicesTablePointerLib.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ UnitTestInstallPeiMemory (
430430
**/
431431
EFI_STATUS
432432
EFIAPI
433-
UnitTestAllocatePages (
433+
UnitTestPeiAllocatePages (
434434
IN CONST EFI_PEI_SERVICES **PeiServices,
435435
IN EFI_MEMORY_TYPE MemoryType,
436436
IN UINTN Pages,
@@ -455,7 +455,7 @@ UnitTestAllocatePages (
455455
**/
456456
EFI_STATUS
457457
EFIAPI
458-
UnitTestAllocatePool (
458+
UnitTestPeiAllocatePool (
459459
IN CONST EFI_PEI_SERVICES **PeiServices,
460460
IN UINTN Size,
461461
OUT VOID **Buffer
@@ -644,7 +644,7 @@ Frees memory pages.
644644
**/
645645
EFI_STATUS
646646
EFIAPI
647-
UnitTestFreePages (
647+
UnitTestPeiFreePages (
648648
IN CONST EFI_PEI_SERVICES **PeiServices,
649649
IN EFI_PHYSICAL_ADDRESS Memory,
650650
IN UINTN Pages

UnitTestFrameworkPkg/Library/UnitTestPeiServicesTablePointerLib/UnitTestPeiServicesTablePointerLibMisc.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ UnitTestInstallPeiMemory (
176176
**/
177177
EFI_STATUS
178178
EFIAPI
179-
UnitTestAllocatePages (
179+
UnitTestPeiAllocatePages (
180180
IN CONST EFI_PEI_SERVICES **PeiServices,
181181
IN EFI_MEMORY_TYPE MemoryType,
182182
IN UINTN Pages,
@@ -204,7 +204,7 @@ UnitTestAllocatePages (
204204
**/
205205
EFI_STATUS
206206
EFIAPI
207-
UnitTestAllocatePool (
207+
UnitTestPeiAllocatePool (
208208
IN CONST EFI_PEI_SERVICES **PeiServices,
209209
IN UINTN Size,
210210
OUT VOID **Buffer
@@ -420,7 +420,7 @@ Frees memory pages.
420420
**/
421421
EFI_STATUS
422422
EFIAPI
423-
UnitTestFreePages (
423+
UnitTestPeiFreePages (
424424
IN CONST EFI_PEI_SERVICES **PeiServices,
425425
IN EFI_PHYSICAL_ADDRESS Memory,
426426
IN UINTN Pages

0 commit comments

Comments
 (0)