Check for double underscores: Python port of 712f7a804e
Signed-off-by: Yuto Takano <yuto.takano@arm.com>
This commit is contained in:
parent
fa950ae344
commit
c763cc368f
1 changed files with 2 additions and 0 deletions
|
@ -469,6 +469,8 @@ class NameCheck(object):
|
|||
for item_match in self.parse_result[group_to_check]:
|
||||
if not re.match(check_pattern, item_match.name):
|
||||
problems.append(PatternMismatch(check_pattern, item_match))
|
||||
if re.match(r".*__.*", item_match.name):
|
||||
problems.append(PatternMismatch("double underscore", item_match))
|
||||
|
||||
if problems:
|
||||
self.set_return_code(1)
|
||||
|
|
Loading…
Reference in a new issue