From: "Michael D Kinney" <michael.d.kinney@intel.com>
To: "Pierre.Gondois@arm.com" <Pierre.Gondois@arm.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>,
"Kinney, Michael D" <michael.d.kinney@intel.com>
Cc: Michael Kubacki <mikuback@linux.microsoft.com>,
"Kubacki, Michael" <michael.kubacki@microsoft.com>
Subject: Re: [PATCH v2 17/17] UnitTestFrameworkPkg: Remove duplicated words
Date: Tue, 6 Sep 2022 18:47:12 +0000 [thread overview]
Message-ID: <CO1PR11MB4929508FD4BBB7285F098CA9D27E9@CO1PR11MB4929.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20220906082912.81795-18-Pierre.Gondois@arm.com>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
> -----Original Message-----
> From: Pierre.Gondois@arm.com <Pierre.Gondois@arm.com>
> Sent: Tuesday, September 6, 2022 1:29 AM
> To: devel@edk2.groups.io
> Cc: Pierre Gondois <pierre.gondois@arm.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Michael Kubacki
> <mikuback@linux.microsoft.com>; Kubacki, Michael <michael.kubacki@microsoft.com>
> Subject: [PATCH v2 17/17] UnitTestFrameworkPkg: Remove duplicated words
>
> From: Pierre Gondois <pierre.gondois@arm.com>
>
> In an effort to clean the documentation of the above
> package, remove duplicated words.
>
> Also change in/out tag to pass the EccCheck.
>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Michael Kubacki <mikuback@linux.microsoft.com>
> Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
> Reviewed-by: Michael Kubacki <michael.kubacki@microsoft.com>
> ---
>
> Notes:
> v2:
> - Correctly align comments. [Michael Kubacki]
>
> .../Library/Posix/DebugLibPosix/DebugLibPosix.c | 2 +-
> UnitTestFrameworkPkg/Library/UnitTestLib/Assert.c | 2 +-
> UnitTestFrameworkPkg/Library/UnitTestLib/AssertCmocka.c | 2 +-
> .../UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.c | 2 +-
> .../UnitTestPersistenceLibSimpleFileSystem.c | 2 +-
> .../PrivateInclude/Library/UnitTestPersistenceLib.h | 2 +-
> UnitTestFrameworkPkg/ReadMe.md | 6 +++---
> 7 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/UnitTestFrameworkPkg/Library/Posix/DebugLibPosix/DebugLibPosix.c
> b/UnitTestFrameworkPkg/Library/Posix/DebugLibPosix/DebugLibPosix.c
> index 694f4beb8bf5..cfee36d2ac7f 100644
> --- a/UnitTestFrameworkPkg/Library/Posix/DebugLibPosix/DebugLibPosix.c
> +++ b/UnitTestFrameworkPkg/Library/Posix/DebugLibPosix/DebugLibPosix.c
> @@ -179,7 +179,7 @@ DebugClearMemory (
> ASSERT (Buffer != NULL);
>
> //
> - // SetMem() checks for the the ASSERT() condition on Length and returns Buffer
> + // SetMem() checks for the ASSERT() condition on Length and returns Buffer
> //
> return SetMem (Buffer, Length, PcdGet8 (PcdDebugClearMemoryValue));
> }
> diff --git a/UnitTestFrameworkPkg/Library/UnitTestLib/Assert.c b/UnitTestFrameworkPkg/Library/UnitTestLib/Assert.c
> index 35636565b783..9bb0798dd801 100644
> --- a/UnitTestFrameworkPkg/Library/UnitTestLib/Assert.c
> +++ b/UnitTestFrameworkPkg/Library/UnitTestLib/Assert.c
> @@ -516,7 +516,7 @@ UnitTestAssertNotNull (
> is either pass, skipped, or failed.
> @param[in] FunctionName Null-terminated ASCII string of the function
> executing the UT_EXPECT_ASSERT_FAILURE() macro.
> - @param[in] LineNumber The source file line number of the the function
> + @param[in] LineNumber The source file line number of the function
> executing the UT_EXPECT_ASSERT_FAILURE() macro.
> @param[in] FileName Null-terminated ASCII string of the filename
> executing the UT_EXPECT_ASSERT_FAILURE() macro.
> diff --git a/UnitTestFrameworkPkg/Library/UnitTestLib/AssertCmocka.c b/UnitTestFrameworkPkg/Library/UnitTestLib/AssertCmocka.c
> index dc05bbd4384c..0b1f6b197a35 100644
> --- a/UnitTestFrameworkPkg/Library/UnitTestLib/AssertCmocka.c
> +++ b/UnitTestFrameworkPkg/Library/UnitTestLib/AssertCmocka.c
> @@ -349,7 +349,7 @@ UnitTestAssertNotNull (
> is either pass, skipped, or failed.
> @param[in] FunctionName Null-terminated ASCII string of the function
> executing the UT_EXPECT_ASSERT_FAILURE() macro.
> - @param[in] LineNumber The source file line number of the the function
> + @param[in] LineNumber The source file line number of the function
> executing the UT_EXPECT_ASSERT_FAILURE() macro.
> @param[in] FileName Null-terminated ASCII string of the filename
> executing the UT_EXPECT_ASSERT_FAILURE() macro.
> diff --git a/UnitTestFrameworkPkg/Library/UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.c
> b/UnitTestFrameworkPkg/Library/UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.c
> index e28327652eaf..064b967b13b3 100644
> --- a/UnitTestFrameworkPkg/Library/UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.c
> +++ b/UnitTestFrameworkPkg/Library/UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.c
> @@ -55,7 +55,7 @@ SaveUnitTestCache (
> Will allocate a buffer to hold the loaded data.
>
> @param[in] FrameworkHandle A pointer to the framework that is being persisted.
> - @param[in] SaveData A pointer pointer that will be updated with the address
> + @param[out] SaveData A pointer that will be updated with the address
> of the loaded data buffer.
>
> @retval EFI_SUCCESS Data has been loaded successfully and SaveData is updated
> diff --git a/UnitTestFrameworkPkg/Library/UnitTestPersistenceLibSimpleFileSystem/UnitTestPersistenceLibSimpleFileSystem.c
> b/UnitTestFrameworkPkg/Library/UnitTestPersistenceLibSimpleFileSystem/UnitTestPersistenceLibSimpleFileSystem.c
> index ed4a7d161524..940c7e42d43c 100644
> --- a/UnitTestFrameworkPkg/Library/UnitTestPersistenceLibSimpleFileSystem/UnitTestPersistenceLibSimpleFileSystem.c
> +++ b/UnitTestFrameworkPkg/Library/UnitTestPersistenceLibSimpleFileSystem/UnitTestPersistenceLibSimpleFileSystem.c
> @@ -312,7 +312,7 @@ Exit:
> Will allocate a buffer to hold the loaded data.
>
> @param[in] FrameworkHandle A pointer to the framework that is being persisted.
> - @param[in] SaveData A pointer pointer that will be updated with the address
> + @param[out] SaveData A pointer that will be updated with the address
> of the loaded data buffer.
>
> @retval EFI_SUCCESS Data has been loaded successfully and SaveData is updated
> diff --git a/UnitTestFrameworkPkg/PrivateInclude/Library/UnitTestPersistenceLib.h
> b/UnitTestFrameworkPkg/PrivateInclude/Library/UnitTestPersistenceLib.h
> index be29e079ec3e..e473bebec7e2 100644
> --- a/UnitTestFrameworkPkg/PrivateInclude/Library/UnitTestPersistenceLib.h
> +++ b/UnitTestFrameworkPkg/PrivateInclude/Library/UnitTestPersistenceLib.h
> @@ -57,7 +57,7 @@ SaveUnitTestCache (
> Will allocate a buffer to hold the loaded data.
>
> @param[in] FrameworkHandle A pointer to the framework that is being persisted.
> - @param[in] SaveData A pointer pointer that will be updated with the address
> + @param[out] SaveData A pointer that will be updated with the address
> of the loaded data buffer.
>
> @retval EFI_SUCCESS Data has been loaded successfully and SaveData is updated
> diff --git a/UnitTestFrameworkPkg/ReadMe.md b/UnitTestFrameworkPkg/ReadMe.md
> index e696412cb3cf..a7b64bd65392 100644
> --- a/UnitTestFrameworkPkg/ReadMe.md
> +++ b/UnitTestFrameworkPkg/ReadMe.md
> @@ -144,7 +144,7 @@ will be used when adding test cases.
> Great! Now we've finished some of the cruft, red tape, and busy work. We're ready to add some tests. Adding a test
> to a test suite is accomplished with the -- you guessed it -- `AddTestCase` function. It takes in the suite handle;
> a `CHAR8` string for the description and class name; a function pointer for the test case itself; additional, optional
> -function pointers for prerequisite check and cleanup routines; and and optional pointer to a context structure.
> +function pointers for prerequisite check and cleanup routines; and optional pointer to a context structure.
>
> Okay, that's a lot. Let's take it one piece at a time. The description and class name strings are very similar in
> usage to the suite title and package name strings in the test suites. The former is for user presentation and the
> @@ -268,8 +268,8 @@ stuart_ci_build -c .pytool/CISettings.py TOOL_CHAIN_TAG=VS2019 -p MdePkg -t NOOP
>
> ## Building and Running Host-Based Tests
>
> -The EDK2 CI infrastructure provides a convenient way to run all host-based tests -- in the the entire tree or just
> -selected packages -- and aggregate all the the reports, including highlighting any failures. This functionality is
> +The EDK2 CI infrastructure provides a convenient way to run all host-based tests -- in the entire tree or just
> +selected packages -- and aggregate all the reports, including highlighting any failures. This functionality is
> provided through the Stuart build system (published by EDK2-PyTools) and the `NOOPT` build target.
>
> ### Building Locally
> --
> 2.25.1
prev parent reply other threads:[~2022-09-06 18:47 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-06 8:28 [PATCH v2 00/17] Remove duplicated words PierreGondois
2022-09-06 8:28 ` [PATCH v2 01/17] .pytool: " PierreGondois
2022-09-06 8:28 ` [PATCH v2 02/17] BaseTools: " PierreGondois
2022-10-01 15:08 ` [edk2-devel] " Bob Feng
2022-10-03 7:59 ` PierreGondois
2022-10-08 2:22 ` 回复: " gaoliming
[not found] ` <1719FA81E323AB08.30932@groups.io>
2022-10-02 3:25 ` Bob Feng
2022-09-06 8:28 ` [PATCH v2 03/17] CryptoPkg: " PierreGondois
2022-09-06 8:28 ` [PATCH v2 04/17] DynamicTablesPkg: " PierreGondois
2022-12-13 14:37 ` Sami Mujawar
2022-09-06 8:29 ` [PATCH v2 05/17] EmulatorPkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 06/17] FatPkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 07/17] MdeModulePkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 08/17] MdePkg: " PierreGondois
2022-09-06 18:50 ` Michael D Kinney
2022-09-06 8:29 ` [PATCH v2 09/17] NetworkPkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 10/17] PcAtChipsetPkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 11/17] RedfishPkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 12/17] SecurityPkg: " PierreGondois
2022-09-06 8:37 ` Yao, Jiewen
2022-09-06 8:29 ` [PATCH v2 13/17] ShellPkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 14/17] SourceLevelDebugPkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 15/17] UefiCpuPkg: " PierreGondois
2022-09-06 8:29 ` [PATCH v2 16/17] UefiPayloadPkg: " PierreGondois
2022-09-12 4:26 ` [edk2-devel] " Guo, Gua
2022-09-06 8:29 ` [PATCH v2 17/17] UnitTestFrameworkPkg: " PierreGondois
2022-09-06 18:47 ` Michael D Kinney [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CO1PR11MB4929508FD4BBB7285F098CA9D27E9@CO1PR11MB4929.namprd11.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox