|
From: <qh...@us...> - 2010-02-11 06:36:21
|
Revision: 1864
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=1864&view=rev
Author: qhuang8
Date: 2010-02-11 06:36:15 +0000 (Thu, 11 Feb 2010)
Log Message:
-----------
Turn on report feature unconditionally for code coverage on various platform build.
This is temporal and should be removed later.
Modified Paths:
--------------
trunk/BaseTools/Source/Python/build/BuildReport.py
Modified: trunk/BaseTools/Source/Python/build/BuildReport.py
===================================================================
--- trunk/BaseTools/Source/Python/build/BuildReport.py 2010-02-11 06:18:05 UTC (rev 1863)
+++ trunk/BaseTools/Source/Python/build/BuildReport.py 2010-02-11 06:36:15 UTC (rev 1864)
@@ -1363,6 +1363,14 @@
# @param ReportType The kind of report items in the final report file
#
def __init__(self, ReportFile, ReportType):
+ #
+ # @attention Temporarily turn on the report feature unconditionally for
+ # code coverage on different platform build validations.
+ # This should be removed after the verification is over
+ #
+ if not ReportFile:
+ ReportFile = "Report.txt"
+
self.ReportFile = ReportFile
if ReportFile:
self.ReportList = []
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|