diff options
author | Hess Chen <hesheng.chen@intel.com> | 2014-12-09 06:41:58 +0000 |
---|---|---|
committer | hchen30 <hchen30@Edk2> | 2014-12-09 06:41:58 +0000 |
commit | 8d62ae35ca6a4d0331f9ebd7609265378e69afbf (patch) | |
tree | b18d514ad965cd7e8613e851afebb0fac55accf3 /BaseTools/Source/Python/Ecc/Check.py | |
parent | 3720ee6d32219fd67d391f53f2cb812dc197a86b (diff) | |
download | edk2-8d62ae35ca6a4d0331f9ebd7609265378e69afbf.tar.gz edk2-8d62ae35ca6a4d0331f9ebd7609265378e69afbf.tar.bz2 edk2-8d62ae35ca6a4d0331f9ebd7609265378e69afbf.zip |
BaseTools/ECC: Fix some issues of ECC tool
Add support for the usage which is defined in the above line for a Protocol/Ppi/Guid
Add support for “!ERROR”
Ignore issue of parsing a macro
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hess Chen <hesheng.chen@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16487 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BaseTools/Source/Python/Ecc/Check.py')
-rw-r--r-- | BaseTools/Source/Python/Ecc/Check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Ecc/Check.py b/BaseTools/Source/Python/Ecc/Check.py index cfa96c156e..5bee6dba7c 100644 --- a/BaseTools/Source/Python/Ecc/Check.py +++ b/BaseTools/Source/Python/Ecc/Check.py @@ -63,7 +63,7 @@ class Check(object): def GeneralCheckNonAcsii(self):
if EccGlobalData.gConfig.GeneralCheckNonAcsii == '1' or EccGlobalData.gConfig.GeneralCheckAll == '1' or EccGlobalData.gConfig.CheckAll == '1':
EdkLogger.quiet("Checking Non-ACSII char in file ...")
- SqlCommand = """select ID, FullPath, ExtName from File"""
+ SqlCommand = """select ID, FullPath, ExtName from File where ExtName in ('.dec', '.inf', '.dsc', 'c', 'h')"""
RecordSet = EccGlobalData.gDb.TblFile.Exec(SqlCommand)
for Record in RecordSet:
if Record[2].upper() not in EccGlobalData.gConfig.BinaryExtList:
|