From: "Sunny Wang" <Sunny.Wang@arm.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
G Edhaya Chandran <Edhaya.Chandran@arm.com>
Cc: Sunny Wang <Sunny.Wang@arm.com>
Subject: Re: [edk2-devel] [PATCH v2 2/2] edk2-test: uefi-sct: Correct the vlanId check in DevicePath Test
Date: Thu, 24 Oct 2024 21:40:46 +0000 [thread overview]
Message-ID: <AS8PR08MB77918418D4EEAEF9A04A0CB7854E2@AS8PR08MB7791.eurprd08.prod.outlook.com> (raw)
In-Reply-To: <CALA6k4Ed50beoYUsLMjzhRUS-uZ2jy2UUOkRir6Yq2QbN1M4mw@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2880 bytes --]
Looks good. Thanks, Edhaya.
Reviewed-by: Sunny Wang <sunny.wang@arm.com<mailto:sunny.wang@arm.com>>
-----Original Message-----
From: G Edhaya Chandran via groups.io<http://groups.io> <edhaya.chandran=arm.com@groups.io<mailto:arm.com@groups.io>>
Date: Tue, Oct 22, 2024 at 10:36 PM
Subject: [edk2-devel] [PATCH v2 2/2] edk2-test: uefi-sct: Correct the vlanId check in DevicePath Test
To: <devel@edk2.groups.io<mailto:devel@edk2.groups.io>>
The DevicePathBBTest wrongly flags the failure for a valid VLAN device
path node. For e.g. value 4040
The range check for vlanId is corrected to fix this issue.
https://bugzilla.tianocore.org/show_bug.cgi?id=4710
Signed-off-by: G Edhaya Chandran <edhaya.chandran@arm.com<mailto:edhaya.chandran@arm.com>>
---
uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePath/BlackBoxTest/DevicePathBBTestFunction.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePath/BlackBoxTest/DevicePathBBTestFunction.c b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePath/BlackBoxTest/DevicePathBBTestFunction.c
index c8757e958a22..21c286ea4096 100644
--- a/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePath/BlackBoxTest/DevicePathBBTestFunction.c
+++ b/uefi-sct/SctPkg/TestCase/UEFI/EFI/Protocol/DevicePath/BlackBoxTest/DevicePathBBTestFunction.c
@@ -682,7 +682,7 @@ BBTestDevicePathNodeConformanceAutoTest (
//
else if ((Type == 3) && (SubType == 20)) {
Vlan = (VLAN_DEVICE_PATH *) DevicePath;
- if (Vlan->VlanId > 4094 || Vlan->VlanId) {
+ if (Vlan->VlanId > 4094) {
AssertionType = EFI_TEST_ASSERTION_FAILED;
} else {
AssertionType = EFI_TEST_ASSERTION_PASSED;
--
2.25.1
------------
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#120661): https://edk2.groups.io/g/devel/message/120661
Mute This Topic: https://groups.io/mt/109165242/5907162
Group Owner: devel+owner@edk2.groups.io<mailto:devel%2Bowner@edk2.groups.io>
Unsubscribe: https://edk2.groups.io/g/devel/unsub [sunny.hsuanwen.wang@gmail.com<mailto:sunny.hsuanwen.wang@gmail.com>]
------------
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#120684): https://edk2.groups.io/g/devel/message/120684
Mute This Topic: https://groups.io/mt/109165242/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-
[-- Attachment #2: Type: text/html, Size: 6483 bytes --]
prev parent reply other threads:[~2024-10-24 21:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-23 3:36 [edk2-devel] [PATCH v2 2/2] edk2-test: uefi-sct: Correct the vlanId check in DevicePath Test G Edhaya Chandran
[not found] ` <CALA6k4Ed50beoYUsLMjzhRUS-uZ2jy2UUOkRir6Yq2QbN1M4mw@mail.gmail.com>
2024-10-24 21:40 ` Sunny Wang [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=AS8PR08MB77918418D4EEAEF9A04A0CB7854E2@AS8PR08MB7791.eurprd08.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