From b005622a32cf9ccea5b13f194bc01e4c1b72ea78 Mon Sep 17 00:00:00 2001 From: Jonathan Kew Date: Tue, 22 Jan 2013 18:41:40 +0000 Subject: [PATCH] bug 832615 - make reftest-analyzer ignore timestamps in b2g reftest logs. r=dbaron a=nonlibxul DONTBUILD --- layout/tools/reftest/reftest-analyzer.xhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/tools/reftest/reftest-analyzer.xhtml b/layout/tools/reftest/reftest-analyzer.xhtml index 09867a8baa9..1b1c81d986d 100644 --- a/layout/tools/reftest/reftest-analyzer.xhtml +++ b/layout/tools/reftest/reftest-analyzer.xhtml @@ -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];