Match new benchmark driver default output

This commit is contained in:
Tim Kientzle
2022-11-04 16:16:37 -07:00
parent 08604eab40
commit 2a3e68a1f8

View File

@@ -503,7 +503,7 @@ class LogParser(object):
Returns a list of `PerformanceTestResult`s.
"""
match_json = re.compile(r"\s*({.*)")
match_header = re.compile(r"( *#[, \t]+TEST[, \t]+SAMPLES[, \t].*)")
match_header = re.compile(r"( *#[, \t]+TEST.*)")
match_legacy = re.compile(r" *(\d+[, \t].*)")
header = ""
for line in lines: