Check for double underscores: Python port of 712f7a804e

Signed-off-by: Yuto Takano <yuto.takano@arm.com>
This commit is contained in:
Yuto Takano 2021-08-05 20:06:34 +01:00
parent fa950ae344
commit c763cc368f

View file

@ -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)