Hi Liming, I agree it is bug fix. Can you do review and if pass help with push label?
Thanks, Mike > -----Original Message----- > From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of gaoliming > via groups.io > Sent: Wednesday, May 10, 2023 6:43 PM > To: devel@edk2.groups.io; Guo, Gua <gua....@intel.com>; 'Michael Kubacki' > <mikub...@linux.microsoft.com>; Kinney, Michael D > <michael.d.kin...@intel.com> > Cc: 'Sean Brogan' <sean.bro...@microsoft.com> > Subject: 回复: [edk2-devel] [PATCH v4 1/1] BaseTools/Plugin: Too many > execute files cause "cmd too long" failure > > Gua: > > This is like a bug fix. I am OK to merge it for this stable tag. > > Thanks > Liming > > -----邮件原件----- > > 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Guo, Gua > > 发送时间: 2023年5月11日 6:01 > > 收件人: Michael Kubacki <mikub...@linux.microsoft.com>; > > devel@edk2.groups.io; Kinney, Michael D <michael.d.kin...@intel.com> > > 抄送: Sean Brogan <sean.bro...@microsoft.com> > > 主题: Re: [edk2-devel] [PATCH v4 1/1] BaseTools/Plugin: Too many execute > > files cause "cmd too long" failure > > > > @Kinney, Michael D > > > > Could we merge the bug patch before code freeze ? The patch can help > unlock > > command too long issue on Windows command prompt. > > > > Thanks, > > Gua > > > > -----Original Message----- > > From: Michael Kubacki <mikub...@linux.microsoft.com> > > Sent: Thursday, May 11, 2023 5:41 AM > > To: devel@edk2.groups.io; Guo, Gua <gua....@intel.com> > > Cc: Kinney, Michael D <michael.d.kin...@intel.com>; Sean Brogan > > <sean.bro...@microsoft.com> > > Subject: Re: [edk2-devel] [PATCH v4 1/1] BaseTools/Plugin: Too many > execute > > files cause "cmd too long" failure > > > > Reviewed-by: Michael Kubacki <michael.kuba...@microsoft.com> > > > > On 5/10/2023 1:14 AM, Guo, Gua wrote: > > > From: Gua Guo <gua....@intel.com> > > > > > > Windows command prompt have 8191 characters limitation, enhance it to > > > make command too long can be resloved. > > > > > > Provide an example, if have too many cov files, it causes to run > > > single command over the 8191 characters limitation. > > >> OpenCppCoverage > > >> --export_type binary:coverage.cov > > >> --working_dir={workspace}Build > > >> --input_coverage=AAA.cov > > >> ... > > >> --input_coverage=NNN.cov > > > > > > The solution is passing many coverage files in single command line to > > > breaking it up into many command lines with one coverage file per > > > command line in order to prevent single line is over to 8191 characters. > > > > > > - Command Line 1 > > >> OpenCppCoverage > > >> --export_type binary:coverage.cov > > >> --working_dir={workspace}Build > > >> --input_coverage=AAA.cov > > >> --input_coverage=coverage.cov > > > ... > > > > > > - Command Line N > > >> OpenCppCoverage > > >> --export_type binary:coverage.cov > > >> --working_dir={workspace}Build > > >> --input_coverage=NNN.cov > > >> --input_coverage=coverage.cov > > > > > > Cc: Michael D Kinney <michael.d.kin...@intel.com> > > > Cc: Sean Brogan <sean.bro...@microsoft.com> > > > Cc: Michael Kubacki <mikub...@linux.microsoft.com> > > > Signed-off-by: Gua Guo <gua....@intel.com> > > > --- > > > .../HostBasedUnitTestRunner.py | 46 > > +++++++++++++++++-- > > > 1 file changed, 41 insertions(+), 5 deletions(-) > > > > > > diff --git > > > > > > a/BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunner.py > > > > > > b/BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunner.py > > > index d993de9412..2e5c462cd2 100644 > > > --- > > > > > > a/BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunner.py > > > +++ > > b/BaseTools/Plugin/HostBasedUnitTestRunner/HostBasedUnitTestRunner > > > +++ .py > > > @@ -205,28 +205,64 @@ class > > HostBasedUnitTestRunner(IUefiBuildPlugin): > > > testList = glob.glob(os.path.join(buildOutputBase, > > > "**","*Test*.exe"), recursive=True) > > > > > > workspace = thebuilder.env.GetValue("WORKSPACE") > > > > > > workspace = (workspace + os.sep) if workspace[-1] != os.sep > > > else workspace > > > > > > + workspaceBuild = os.path.join(workspace, 'Build') > > > > > > # Generate coverage file > > > > > > coverageFile = "" > > > > > > for testFile in testList: > > > > > > ret = RunCmd("OpenCppCoverage", f"--source > > {workspace} > > > --export_type binary:{testFile}.cov -- {testFile}") > > > > > > - coverageFile += " --input_coverage=" + testFile + ".cov" > > > > > > + if ret != 0: > > > > > > + logging.error("UnitTest Coverage: Failed to collect > > > + coverage data.") > > > > > > + return 1 > > > > > > + > > > > > > + coverageFile = f" --input_coverage={testFile}.cov" > > > > > > + totalCoverageFile = os.path.join(buildOutputBase, > > > + 'coverage.cov') > > > > > > + if os.path.isfile(totalCoverageFile): > > > > > > + coverageFile += f" > > --input_coverage={totalCoverageFile}" > > > > > > + ret = RunCmd( > > > > > > + "OpenCppCoverage", > > > > > > + f"--export_type binary:{totalCoverageFile} " + > > > > > > + f"--working_dir={workspaceBuild} " + > > > > > > + f"{coverageFile}" > > > > > > + ) > > > > > > if ret != 0: > > > > > > logging.error("UnitTest Coverage: Failed to collect > > > coverage data.") > > > > > > return 1 > > > > > > > > > > > > # Generate and XML file if requested.by each package > > > > > > - ret = RunCmd("OpenCppCoverage", f"--export_type > > cobertura:{os.path.join(buildOutputBase, 'coverage.xml')} > > --working_dir={workspace}Build {coverageFile}") > > > > > > + ret = RunCmd( > > > > > > + "OpenCppCoverage", > > > > > > + f"--export_type cobertura:{os.path.join(buildOutputBase, > > > + 'coverage.xml')} " + > > > > > > + f"--working_dir={workspaceBuild} " + > > > > > > + f"--input_coverage={totalCoverageFile} " > > > > > > + ) > > > > > > if ret != 0: > > > > > > logging.error("UnitTest Coverage: Failed to generate > > > cobertura format xml in single package.") > > > > > > return 1 > > > > > > > > > > > > # Generate total report XML file for all package > > > > > > - testCoverageList = glob.glob(os.path.join(workspace, "Build", > > "**","*Test*.exe.cov"), recursive=True) > > > > > > + testCoverageList = glob.glob(os.path.join(workspace, "Build", > > > + "**", "*Test*.exe.cov"), recursive=True) > > > > > > coverageFile = "" > > > > > > + totalCoverageFile = os.path.join(workspaceBuild, > > > + 'coverage.cov') > > > > > > for testCoverage in testCoverageList: > > > > > > - coverageFile += " --input_coverage=" + testCoverage > > > > > > + coverageFile = f" --input_coverage={testCoverage}" > > > > > > + if os.path.isfile(totalCoverageFile): > > > > > > + coverageFile += f" > > --input_coverage={totalCoverageFile}" > > > > > > + ret = RunCmd( > > > > > > + "OpenCppCoverage", > > > > > > + f"--export_type binary:{totalCoverageFile} " + > > > > > > + f"--working_dir={workspaceBuild} " + > > > > > > + f"{coverageFile}" > > > > > > + ) > > > > > > + if ret != 0: > > > > > > + logging.error("UnitTest Coverage: Failed to collect > > > + coverage data.") > > > > > > + return 1 > > > > > > > > > > > > - ret = RunCmd("OpenCppCoverage", f"--export_type > > cobertura:{workspace}Build/coverage.xml --working_dir={workspace}Build > > {coverageFile}") > > > > > > + ret = RunCmd( > > > > > > + "OpenCppCoverage", > > > > > > + f"--export_type cobertura:{os.path.join(workspaceBuild, > > > + 'coverage.xml')} " + > > > > > > + f"--working_dir={workspaceBuild} " + > > > > > > + f"--input_coverage={totalCoverageFile}" > > > > > > + ) > > > > > > if ret != 0: > > > > > > logging.error("UnitTest Coverage: Failed to generate > > > cobertura format xml.") > > > > > > return 1 > > > > > > > > > > > > > > > > > > -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#104650): https://edk2.groups.io/g/devel/message/104650 Mute This Topic: https://groups.io/mt/98819616/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/leave/9847357/21656/1706620634/xyzzy [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-