We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b68fed3 commit 0464740Copy full SHA for 0464740
1 file changed
benchmarks.py
@@ -332,6 +332,7 @@ def action_run(args):
332
output = _sprun(command).stdout.decode().splitlines()
333
for line in output:
334
matches = p.findall(line.rstrip())
335
+ # We're interested only in the lines in the output that look like that they contain benchmark results.
336
if len(matches) == 1 and len(matches[0]) == 5:
337
if matches[0][0] != group or matches[0][1] != bench:
338
raise RuntimeError("Seems like swift executed wrong benchmark")
@@ -342,8 +343,6 @@ def action_run(args):
342
343
print(result.str_compare(base_result))
344
else:
345
print(result)
- else:
346
- raise RuntimeError("Unexpected format of the output")
347
348
if base is not None:
349
print(stat_keeper.summary())
0 commit comments