From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id E713D740045 for ; Mon, 7 Apr 2025 15:42:11 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=cpsIbs+wPST1EaI/Phwx/kYD5QGOUE5O+vqYt3kbe8A=; c=relaxed/simple; d=groups.io; h=MIME-Version:References:In-Reply-To:From:Date:Message-ID:Subject:To:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type; s=20240830; t=1744040531; v=1; x=1744299730; b=K3sPDCiSMy7AvLwWXc2/rL6yVJ6kXJlUZ+VYQIW5H694FCG2UhHZ4KOz5CEPadc6LIgffmwr wiQhjTwVnl0Xiv9mVwus3yF489T3yz+nl+cDf0LO+fXBP1Qa4cnJNNBCWOAEGGEFTkP7bkVJhY+ cGT0HPNmYQ5rCP3EvPpca4E2WSk/08/S0CRsqH1uU0XYLIlsALO1yn0GRzT7A32VvT0xoMx75iI m6a+8+Q9VNTfOmbj5traZh+cBPG3d3MM3nQAyRGuuBnAbzBnW59Vjb2NeteKGGwKzIiMK/EbgBR JuPDFiA6A01xTAKYBczWzS8hmvf5rYsBLF9Q1sjULZt7A== X-Received: by 127.0.0.2 with SMTP id 0bNyYY7687511xYZGehBw6Yp; Mon, 07 Apr 2025 08:42:10 -0700 X-Received: from mail-lf1-f41.google.com (mail-lf1-f41.google.com [209.85.167.41]) by mx.groups.io with SMTP id smtpd.web11.49517.1744038043802355307 for ; Mon, 07 Apr 2025 08:00:44 -0700 X-Received: by mail-lf1-f41.google.com with SMTP id 2adb3069b0e04-5498d2a8b89so5127807e87.1 for ; Mon, 07 Apr 2025 08:00:43 -0700 (PDT) X-Gm-Message-State: ymEhjFBu7iYapOqJLiYFeN9Ex7686176AA= X-Gm-Gg: ASbGncvvUecWf1qOq03zTtAxvF8/gX9Z4vn9zl2HOfqZ7M8nMHNzTHRTt8LW6aAJSZu eXhBgS4FUFjXg7o/0693sltSkISrfSPy2LwD7YiR6n7JCQuygJgtrfNNvoVr7cHQhK2PemlGdx5 gyr5c1/5WBTkVhoRhoXRHpX+RKyQ== X-Google-Smtp-Source: AGHT+IHMH8b1Y05LKKKOkBKm/kVRrHGuu/LWCMoTXITHd47V1Eexi+1LAYJfjvMSMLaxOWvHxooCuLaU3DTN26JjA3g= X-Received: by 2002:a05:6512:6cd:b0:54b:117b:dbf1 with SMTP id 2adb3069b0e04-54c227ff964mr3757310e87.56.1744038041434; Mon, 07 Apr 2025 08:00:41 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: "Archie via groups.io" Date: Mon, 7 Apr 2025 23:00:30 +0800 X-Gm-Features: ATxdqUGwNZZIfSNPf-cCEHNm7W5kYJ0_un16CIBZp78WZbVT__1SkiZ1k0fDOog Message-ID: Subject: [edk2-devel] [PATCH] edk2-test: uefi-sct: Correct the AIP GUID gEfiAdapterInfoUndiIPv6SupportGuid to the correct definition. To: devel@edk2.groups.io Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Mon, 07 Apr 2025 08:42:09 -0700 Resent-From: syungchi@gmail.com Reply-To: devel@edk2.groups.io,syungchi@gmail.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Type: multipart/alternative; boundary="000000000000ef48080632317fd0" X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240830 header.b=K3sPDCiS; dmarc=pass (policy=none) header.from=groups.io; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io --000000000000ef48080632317fd0 Content-Type: text/plain; charset="UTF-8" The test 5.5.11.1.2 consistently fails when using the AIP SupportType gEfiAdapterInfoNetworkBootGuid. The issue occurs because gEfiAdapterInfoUndiIPv6SupportGuid was assigned to the wrong GUID. Correct the gEfiAdapterInfoUndiIPv6SupportGuid assignment to EFI_ADAPTER_INFO_UNDI_IPV6_SUPPORT_GUID to fix this bug. REF: https://github.com/Archi1986/edk2-test/tree/uefi_sct_Adapter_Correct_UNDI_IPV6_GUID --- .../TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/Guid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi-sct/SctPkg/TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/Guid.c b/uefi-sct/SctPkg/TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/Guid.c index b58e8aca..8dcd2da7 100644 --- a/uefi-sct/SctPkg/TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/Guid.c +++ b/uefi-sct/SctPkg/TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/Guid.c @@ -61,7 +61,7 @@ EFI_GUID gEfiAdapterInfoSanMacAddressGuid = EFI_ADAPTER_INFO_SAN_MAC_A EFI_GUID gEfiAdapterInfoNetworkBootGuid = EFI_ADAPTER_INFO_NETWORK_BOOT_GUID; -EFI_GUID gEfiAdapterInfoUndiIPv6SupportGuid = EFI_ADAPTER_INFO_NETWORK_BOOT_GUID; +EFI_GUID gEfiAdapterInfoUndiIPv6SupportGuid = EFI_ADAPTER_INFO_UNDI_IPV6_SUPPORT_GUID; EFI_GUID gEfiAdapterInfoMediaTypeGuid = EFI_ADAPTER_INFO_MEDIA_TYPE_GUID; -- 2.43.0 PR#241 ( https://github.com/tianocore/edk2-test/pull/241 ) Signed-off-by: Archie Hsu -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#121243): https://edk2.groups.io/g/devel/message/121243 Mute This Topic: https://groups.io/mt/112135377/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=- --000000000000ef48080632317fd0 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
The test 5.5.11.1.2 consistently fails when u= sing the AIP SupportType gEfiAdapterInfoNetworkBootGuid.

The issue occurs becaus= e gEfiAdapterInfoUndiIPv6SupportGuid was assigned to the wrong GUID.
Correct the gEfiAdapterInfoUndiIPv6SupportGuid assignment to EFI_ADAPTER_I= NFO_UNDI_IPV6_SUPPORT_GUID to fix this bug.


---
= =C2=A0.../TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/Guid.c =C2=A0= | 2 +-
=C2=A01 file changed, 1 insertion(+), 1 deletion(-)

diff -= -git a/uefi-sct/SctPkg/TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/= Guid.c b/uefi-sct/SctPkg/TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTes= t/Guid.c
index b58e8aca..8dcd2da7 100644
--- a/uefi-sct/SctPkg/TestCa= se/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/Guid.c
+++ b/uefi-sct/SctP= kg/TestCase/UEFI/IHV/Protocol/AdapterInfo/BlackBoxTest/Guid.c
@@ -61,7 += 61,7 @@ EFI_GUID gEfiAdapterInfoSanMacAddressGuid =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =3D EFI_ADAPTER_INFO_SAN_MAC_A

=C2=A0EFI_GUID gEfiAdapter= InfoNetworkBootGuid =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =3D EFI_ADAPT= ER_INFO_NETWORK_BOOT_GUID;

-EFI_GUID gEfiAdapterInfoUndiIPv6SupportG= uid =C2=A0 =C2=A0 =C2=A0 =C2=A0 =3D EFI_ADAPTER_INFO_NETWORK_BOOT_GUID;
= +EFI_GUID gEfiAdapterInfoUndiIPv6SupportGuid =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =3D EFI_ADAPTER_INFO_UNDI_IPV6_SUPPORT_GUID;

=C2=A0EFI_GUID gEfiAdap= terInfoMediaTypeGuid =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =3D E= FI_ADAPTER_INFO_MEDIA_TYPE_GUID;

--
2.43.0

PR#241 (=C2=A0<= a href=3D"https://github.com/tianocore/edk2-test/pull/241" target=3D"_blank= ">https://github.com/tianocore/edk2-test/pull/241=C2=A0)

Signed-= off-by: Archie Hsu <Syungchi@gmail.com>
_._,_._,_

Groups.io Links:

=20 You receive all messages sent to this group. =20 =20

View/Reply Online (#121243) | =20 | Mute= This Topic | New Topic
Your Subscriptio= n | Contact Group Owner | Unsubscribe [rebecca@openfw.io]

_._,_._,_
--000000000000ef48080632317fd0--