From: "gaoliming via groups.io" <gaoliming=byosoft.com.cn@groups.io>
To: <devel@edk2.groups.io>, <vnowkakeane@linux.microsoft.com>
Subject: 回复: [edk2-devel] [PATCH v2 0/7] Uncrustify GoogleTest update
Date: Tue, 12 Sep 2023 09:08:30 +0800 [thread overview]
Message-ID: <000201d9e515$a5176cb0$ef464610$@byosoft.com.cn> (raw)
In-Reply-To: <20230816211523.12-1-vnowkakeane@linux.microsoft.com>
For this patch set, Acked-by: Liming Gao <gaoliming@byosoft.com.cn>
> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 VivianNK
> 发送时间: 2023年8月17日 5:15
> 收件人: devel@edk2.groups.io
> 主题: [edk2-devel] [PATCH v2 0/7] Uncrustify GoogleTest update
>
> v1 -> v2:
> - Update commit message to explain the audit only mode change is
> temporary to prevent intermediate CI failures.
> - Format patch Cc's correctly
>
> v1 archive:https://edk2.groups.io/g/devel/message/107665
>
> VivianNK (7):
> .pytool: Set uncrustify check to audit only (temporary)
> .pytool: Add cpp support to uncrustify plugin
> MdeModulePkg: Apply uncrustify formatting to relevant files.
> MdePkg: Apply uncrustify formatting to relevant files
> SecurityPkg: Apply uncrustify formatting to relevant files
> UnitTestFrameworkPkg: Apply uncrustify formatting to relevant files
> .pytool: Undo uncrustify check change
>
> .pytool/Plugin/UncrustifyCheck/UncrustifyCheck.py
> | 2 +-
> .pytool/Plugin/UncrustifyCheck/uncrustify.cfg
> | 4 +-
> MdeModulePkg/Library/UefiSortLib/GoogleTest/UefiSortLibGoogleTest.cpp
> | 37 +-
>
> MdeModulePkg/Test/Mock/Include/GoogleTest/Library/MockPciHostBridgeLi
> b.h | 4 +-
>
> MdeModulePkg/Test/Mock/Library/GoogleTest/MockPciHostBridgeLib/Mock
> PciHostBridgeLib.cpp | 8 +-
>
> MdePkg/Test/GoogleTest/Library/BaseSafeIntLib/SafeIntLibUintnIntnUnitTest
> s32.cpp | 114 ++--
>
> MdePkg/Test/GoogleTest/Library/BaseSafeIntLib/SafeIntLibUintnIntnUnitTest
> s64.cpp | 114 ++--
> MdePkg/Test/GoogleTest/Library/BaseSafeIntLib/TestBaseSafeIntLib.cpp
> | 563 ++++++++++----------
> MdePkg/Test/Mock/Include/GoogleTest/Library/MockHobLib.h
> | 6 +-
> MdePkg/Test/Mock/Include/GoogleTest/Library/MockPeiServicesLib.h
> | 6 +-
> MdePkg/Test/Mock/Include/GoogleTest/Library/MockUefiLib.h
> | 4 +-
>
> MdePkg/Test/Mock/Include/GoogleTest/Library/MockUefiRuntimeServicesTa
> bleLib.h | 4 +-
> MdePkg/Test/Mock/Library/GoogleTest/MockHobLib/MockHobLib.cpp
> | 40 +-
>
> MdePkg/Test/Mock/Library/GoogleTest/MockPeiServicesLib/MockPeiService
> sLib.cpp | 52 +-
> MdePkg/Test/Mock/Library/GoogleTest/MockUefiLib/MockUefiLib.cpp
> | 6 +-
>
> MdePkg/Test/Mock/Library/GoogleTest/MockUefiRuntimeServicesTableLib/
> MockUefiRuntimeServicesTableLib.cpp | 12 +-
>
> SecurityPkg/Library/SecureBootVariableLib/GoogleTest/SecureBootVariableLi
> bGoogleTest.cpp | 205 ++++---
>
> SecurityPkg/Test/Mock/Include/GoogleTest/Library/MockPlatformPKProtecti
> onLib.h | 4 +-
>
> SecurityPkg/Test/Mock/Library/GoogleTest/MockPlatformPKProtectionLib/M
> ockPlatformPKProtectionLib.cpp | 4 +-
> UnitTestFrameworkPkg/Include/Library/GoogleTestLib.h
> | 2 +-
>
> UnitTestFrameworkPkg/Test/GoogleTest/Sample/SampleGoogleTest/SampleG
> oogleTest.cpp | 76 +--
> 21 files changed, 664 insertions(+), 603 deletions(-)
>
> --
> 2.41.0.windows.3
>
>
>
> -=-=-=-=-=-=
> Groups.io Links: You receive all messages sent to this group.
> View/Reply Online (#107809):
> https://edk2.groups.io/g/devel/message/107809
> Mute This Topic: https://groups.io/mt/100788665/4905953
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub
> [gaoliming@byosoft.com.cn]
> -=-=-=-=-=-=
>
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#108509): https://edk2.groups.io/g/devel/message/108509
Mute This Topic: https://groups.io/mt/101306831/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
next prev parent reply other threads:[~2023-09-12 1:08 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-16 21:15 [edk2-devel] [PATCH v2 0/7] Uncrustify GoogleTest update VivianNK
2023-08-16 21:15 ` [edk2-devel] [PATCH v2 1/7] .pytool: Set uncrustify check to audit only (temporary) VivianNK
2023-08-16 22:09 ` Michael Kubacki
2023-08-16 21:15 ` [edk2-devel] [PATCH v2 2/7] .pytool: Add cpp support to uncrustify plugin VivianNK
2023-08-16 21:15 ` [edk2-devel] [PATCH v2 3/7] MdeModulePkg: Apply uncrustify formatting to relevant files VivianNK
2023-08-16 21:15 ` [edk2-devel] [PATCH v2 4/7] MdePkg: " VivianNK
2023-08-16 21:15 ` [edk2-devel] [PATCH v2 5/7] SecurityPkg: " VivianNK
2023-08-17 2:41 ` Yao, Jiewen
2023-08-16 21:15 ` [edk2-devel] [PATCH v2 6/7] UnitTestFrameworkPkg: " VivianNK
2023-08-16 21:15 ` [edk2-devel] [PATCH v2 7/7] .pytool: Undo uncrustify check change VivianNK
2023-08-16 22:09 ` Michael Kubacki
2023-09-12 1:08 ` gaoliming via groups.io [this message]
2023-09-12 14:42 ` [edk2-devel] [PATCH v2 0/7] Uncrustify GoogleTest update Michael D Kinney
2023-09-27 19:43 ` VivianNK
2023-10-24 20:34 ` VivianNK
2023-10-25 17:11 ` Michael D Kinney
2023-10-25 18:08 ` Michael D Kinney
2023-10-26 21:08 ` VivianNK
2023-10-27 2:41 ` Michael D Kinney
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='000201d9e515$a5176cb0$ef464610$@byosoft.com.cn' \
--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