Merge pull request #198 from mozilla/buildtype

Set re.IGNORECASE correctly for the build_type regex (bug 1062228)
This commit is contained in:
camd 2014-09-05 08:52:09 -07:00
Родитель 0be2592885 3559ae26e1
Коммит 426efbecd1
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -595,7 +595,7 @@ buildernames = [
'os_platform': 'osx-10-8',
'vm': False}}),
('Ubuntu ASAN VM 12.04 x64 mozilla-inbound opt test crashtest',
{'build_type': 'opt',
{'build_type': 'asan',
'job_type': 'unittest',
'name': {'group_name': 'Reftest',
'group_symbol': 'R',

Просмотреть файл

@ -264,11 +264,11 @@ VM_STATUS = [
BUILD_TYPE_BUILDERNAME = [
{
'type': 'pgo',
'regex': re.compile('.+ pgo(?:[ ]|-).+'),
'regex': re.compile('.+ pgo[ -].+', re.IGNORECASE),
},
{
'type': 'asan',
'regex': re.compile('.+ asan .+'),
'regex': re.compile('.+ asan .+', re.IGNORECASE),
},
{
'type': 'debug',
@ -752,7 +752,7 @@ def extract_vm_status(source_string):
def extract_build_type(source_string):
output = 'opt'
for build_type in BUILD_TYPE_BUILDERNAME:
if build_type["regex"].search(source_string, re.IGNORECASE):
if build_type["regex"].search(source_string):
output = build_type["type"]
return output
return output