[edk2-devel] [PATCH 1/1] UefiCpuPkg: Fix typo in filenames in Test/UnitTest/EfiMpServicesPpiProtocol

Rebecca Cran quic_rcran at quicinc.com
Thu Jan 19 04:47:53 UTC 2023


Fix the spelling of EfiMpServicesUnitTestCommon in
Test/UnitTest/EfiMpServicesPpiProtocol.

Signed-off-by: Rebecca Cran <rebecca at quicinc.com>
---
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiPeiUnitTest.inf                            | 4 ++--
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDxeUnitTest.inf                              | 4 ++--
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.inf                       | 4 ++--
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolShellUnitTest.inf                            | 4 ++--
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/{EfiMpServicesUnitTestCommom.h => EfiMpServicesUnitTestCommon.h} | 4 ++--
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiUnitTest.c                                 | 2 +-
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.c                         | 2 +-
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolUnitTest.c                                   | 2 +-
 UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/{EfiMpServicesUnitTestCommom.c => EfiMpServicesUnitTestCommon.c} | 2 +-
 9 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiPeiUnitTest.inf b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiPeiUnitTest.inf
index 0b2ddc5585d9..edec20daf019 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiPeiUnitTest.inf
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiPeiUnitTest.inf
@@ -21,8 +21,8 @@ [Defines]
 #
 
 [Sources]
-  EfiMpServicesUnitTestCommom.c
-  EfiMpServicesUnitTestCommom.h
+  EfiMpServicesUnitTestCommon.c
+  EfiMpServicesUnitTestCommon.h
   EdkiiPeiMpServices2PpiUnitTest.c
 
 [Packages]
diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDxeUnitTest.inf b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDxeUnitTest.inf
index 1389092c06c3..1075fb92373c 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDxeUnitTest.inf
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDxeUnitTest.inf
@@ -21,8 +21,8 @@ [Defines]
 #
 
 [Sources]
-  EfiMpServicesUnitTestCommom.c
-  EfiMpServicesUnitTestCommom.h
+  EfiMpServicesUnitTestCommon.c
+  EfiMpServicesUnitTestCommon.h
   EfiMpServiceProtocolUnitTest.c
 
 [Packages]
diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.inf b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.inf
index 3fa287d1ae31..0b18651a021a 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.inf
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.inf
@@ -16,8 +16,8 @@ [Defines]
   UNLOAD_IMAGE    = MpProtocolUnitTestUnload
 
 [Sources]
-  EfiMpServicesUnitTestCommom.c
-  EfiMpServicesUnitTestCommom.h
+  EfiMpServicesUnitTestCommon.c
+  EfiMpServicesUnitTestCommon.h
   EfiMpServiceProtocolUnitTest.c
   EfiMpServiceProtocolDynamicCmdUnitTest.c
 
diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolShellUnitTest.inf b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolShellUnitTest.inf
index 34c1ea96a6e0..2e2b2a976171 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolShellUnitTest.inf
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolShellUnitTest.inf
@@ -21,8 +21,8 @@ [Defines]
 #
 
 [Sources]
-  EfiMpServicesUnitTestCommom.c
-  EfiMpServicesUnitTestCommom.h
+  EfiMpServicesUnitTestCommon.c
+  EfiMpServicesUnitTestCommon.h
   EfiMpServiceProtocolUnitTest.c
 
 [Packages]
diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommom.h b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommon.h
similarity index 96%
rename from UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommom.h
rename to UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommon.h
index d2b1633b4d10..d6f06b1b8525 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommom.h
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommon.h
@@ -7,8 +7,8 @@
 
 **/
 
-#ifndef EFI_MP_SERVICES_UNIT_TEST_COMMOM_H_
-#define EFI_MP_SERVICES_UNIT_TEST_COMMOM_H_
+#ifndef EFI_MP_SERVICES_UNIT_TEST_COMMON_H_
+#define EFI_MP_SERVICES_UNIT_TEST_COMMON_H_
 
 #include <PiPei.h>
 #include <Ppi/MpServices2.h>
diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiUnitTest.c b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiUnitTest.c
index 5c42a81d2978..877ab49dd75c 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiUnitTest.c
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EdkiiPeiMpServices2PpiUnitTest.c
@@ -9,7 +9,7 @@
 
 #include <Library/PeimEntryPoint.h>
 #include <Library/PeiServicesLib.h>
-#include "EfiMpServicesUnitTestCommom.h"
+#include "EfiMpServicesUnitTestCommon.h"
 
 #define UNIT_TEST_NAME     "EdkiiPeiMpServices2Ppi Unit Test"
 #define UNIT_TEST_VERSION  "0.1"
diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.c b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.c
index be65c3d67805..224bead95bd8 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.c
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolDynamicCmdUnitTest.c
@@ -9,7 +9,7 @@
 
 #include <Library/UefiBootServicesTableLib.h>
 #include <Protocol/ShellDynamicCommand.h>
-#include "EfiMpServicesUnitTestCommom.h"
+#include "EfiMpServicesUnitTestCommon.h"
 
 CHAR16  *mMpProtocolUnitTestCommandHelp = L".TH MpProtocolUnitTest 0\r\n.SH NAME\r\nDisplay unit test results of EFI MP services protocol.\r\n";
 
diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolUnitTest.c b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolUnitTest.c
index 5fe636996031..406abc64f5cd 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolUnitTest.c
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServiceProtocolUnitTest.c
@@ -9,7 +9,7 @@
 
 #include <PiDxe.h>
 #include <Library/UefiBootServicesTableLib.h>
-#include "EfiMpServicesUnitTestCommom.h"
+#include "EfiMpServicesUnitTestCommon.h"
 
 #define UNIT_TEST_NAME     "EfiMpServiceProtocol Unit Test"
 #define UNIT_TEST_VERSION  "0.1"
diff --git a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommom.c b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommon.c
similarity index 97%
rename from UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommom.c
rename to UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommon.c
index ff79c5e8d43b..92aa653fe1f4 100644
--- a/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommom.c
+++ b/UefiCpuPkg/Test/UnitTest/EfiMpServicesPpiProtocol/EfiMpServicesUnitTestCommon.c
@@ -7,7 +7,7 @@
 
 **/
 
-#include "EfiMpServicesUnitTestCommom.h"
+#include "EfiMpServicesUnitTestCommon.h"
 
 /**
   Prep routine for Unit test function.
-- 
2.30.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#98865): https://edk2.groups.io/g/devel/message/98865
Mute This Topic: https://groups.io/mt/96371790/1813853
Group Owner: devel+owner at edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [edk2-devel-archive at redhat.com]
-=-=-=-=-=-=-=-=-=-=-=-




More information about the edk2-devel-archive mailing list