Bug 1084322 - Allow reftest analyzer to accept pasting of non-raw log output from treeherder. r=dbaron

This commit is contained in:
Jonathan Watt 2014-10-26 01:15:25 +01:00
Родитель cdf3b76e36
Коммит 5b22d99725
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -245,7 +245,7 @@ function process_log(contents) {
}); });
continue; continue;
} }
match = line.match(/^ IMAGE([^:]*): (.*)$/); match = line.match(/^(?: |)IMAGE ([^:]*): (data:.*)$/);
if (match) { if (match) {
var item = gTestItems[gTestItems.length - 1]; var item = gTestItems[gTestItems.length - 1];
item.images.push(match[2]); item.images.push(match[2]);