public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Guomin Jiang" <guomin.jiang@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"Zhang, Shenglei" <shenglei.zhang@intel.com>,
	"newexplorerj@gmail.com" <newexplorerj@gmail.com>
Cc: "Kinney, Michael D" <michael.d.kinney@intel.com>,
	"sean.brogan@microsoft.com" <sean.brogan@microsoft.com>,
	"Bret.Barkelew@microsoft.com" <Bret.Barkelew@microsoft.com>
Subject: Re: [edk2-devel] [PATCH] UnitTestFrameworkPkg: Invalid index may be used.
Date: Mon, 23 Mar 2020 05:56:01 +0000	[thread overview]
Message-ID: <B1F5B0856690F44595CF70FED755C939549418@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <C0706E73DB8C124D9B9C38AA364E5D5E06041353@SHSMSX104.ccr.corp.intel.com>

Hi Michael, Sean, Bret,

Could help review the patch?

Thanks
> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Zhang, Shenglei
> Sent: Wednesday, March 4, 2020 3:59 PM
> To: devel@edk2.groups.io; newexplorerj@gmail.com
> Subject: Re: [edk2-devel] [PATCH] UnitTestFrameworkPkg: Invalid index may
> be used.
> 
> Reviewed-by: Shenglei Zhang <shenglei.zhang@intel.com>
> 
> > -----Original Message-----
> > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> > GuoMinJ
> > Sent: Thursday, February 20, 2020 9:42 AM
> > To: devel@edk2.groups.io
> > Cc: GuoMinJ <newexplorerj@gmail.com>
> > Subject: [edk2-devel] [PATCH] UnitTestFrameworkPkg: Invalid index may
> > be used.
> >
> > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2535
> >
> > The UINT_TEST_STATUS and FAILURE_TYPE have used 0 as status, so use 0
> > as unknown is confused, remove it from array enumeration but keep it
> > location in the array.
> >
> > Signed-off-by: GuoMinJ <newexplorerj@gmail.com>
> > ---
> >  .../Library/UnitTestResultReportLib/UnitTestResultReportLib.c | 4
> > ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git
> >
> a/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultR
> > eportLib.c
> >
> b/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultR
> > eportLib.c
> > index 687a04f55d..eba68e330c 100644
> > ---
> >
> a/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultR
> > eportLib.c
> > +++
> >
> b/UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultR
> > eportLib.c
> > @@ -65,7 +65,7 @@ GetStringForUnitTestStatus (  {
> >    UINTN  Index;
> >
> > -  for (Index = 0; Index < ARRAY_SIZE (mStatusStrings); Index++) {
> > +  for (Index = 0; Index < ARRAY_SIZE (mStatusStrings) - 1; Index++) {
> >      if (mStatusStrings[Index].Status == Status) {
> >        //
> >        // Return string from matching entry @@ -87,7 +87,7 @@
> > GetStringForFailureType (  {
> >    UINTN  Index;
> >
> > -  for (Index = 0; Index < ARRAY_SIZE (mFailureTypeStrings); Index++)
> > {
> > +  for (Index = 0; Index < ARRAY_SIZE (mFailureTypeStrings) - 1;
> > + Index++) {
> >      if (mFailureTypeStrings[Index].Type == Failure) {
> >        //
> >        // Return string from matching entry
> > --
> > 2.17.1
> >
> >
> >
> 
> 
> 


  reply	other threads:[~2020-03-23  5:56 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-20  1:41 [PATCH] UnitTestFrameworkPkg: Invalid index may be used GuoMinJ
2020-02-20 21:39 ` [EXTERNAL] [edk2-devel] " Bret Barkelew
2020-03-04  7:59 ` Zhang, Shenglei
2020-03-23  5:56   ` Guomin Jiang [this message]
2020-03-23 17:32     ` Michael D Kinney
2020-03-24 17:17       ` Bret Barkelew

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=B1F5B0856690F44595CF70FED755C939549418@SHSMSX101.ccr.corp.intel.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