Fix regexp that parse a template-based test case name

- allow to use symbols "-" and "_" in the YAML template names

Change-Id: I1e69cf39e667c7198ecddbddedb5aa45d789c7eb
Closes-Bug:#1604057
This commit is contained in:
Dennis Dmitriev 2016-07-18 19:11:09 +03:00
parent b35ed149f1
commit 923af3eb22
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ def reg_factory(cases, configs):
def split_group_config(group):
m = re.search('([\w\.]*)\((\w*)\)', group)
m = re.search('([\w\.]*)\(([\w\-\_]*)\)', group)
if m:
return m.groups()