bug 832615 - make reftest-analyzer ignore timestamps in b2g reftest logs. r=dbaron a=nonlibxul DONTBUILD

This commit is contained in:
Jonathan Kew 2013-01-22 18:41:40 +00:00
parent ef7fbcca32
commit b005622a32

View File

@ -208,7 +208,7 @@ function process_log(contents) {
gTestItems = [];
for (var j in lines) {
var line = lines[j];
var match = line.match(/^(?:NEXT ERROR )?REFTEST (.*)$/);
var match = line.match(/^(?:NEXT ERROR |\d\d:\d\d:\d\d +INFO - +)*REFTEST (.*)$/);
if (!match)
continue;
line = match[1];