tests: Fix run-perfbench parsing "no matching params" case.

Signed-off-by: Angus Gratton <gus@projectgus.com>
pull/8812/head
Angus Gratton 2022-06-24 13:27:25 +10:00
rodzic ad308bc322
commit e024a4c59c
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -15,7 +15,7 @@ def bm_run(N, M):
cur_nm = nm
param = p
if param is None:
print(-1, -1, "no matching params")
print(-1, -1, "SKIP: no matching params")
return
# Run and time benchmark

Wyświetl plik

@ -187,7 +187,7 @@ def parse_output(filename):
m = int(m.split("=")[1])
data = []
for l in f:
if l.find(": ") != -1 and l.find(": SKIP") == -1 and l.find("CRASH: ") == -1:
if ": " in l and ": SKIP" not in l and "CRASH: " not in l:
name, values = l.strip().split(": ")
values = tuple(float(v) for v in values.split())
data.append((name,) + values)