Skip to content
Snippets Groups Projects
Commit 4e4c4564 authored by Pawel Dziepak's avatar Pawel Dziepak Committed by Pekka Enberg
Browse files

post-processing/memory: be less strict about trace format

parent 01e8261a
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ def is_free(x):
return x.find("memory_free ") > 0
def get_len(x):
return re.findall("len=(.*)\n", x)[0]
return re.findall("len=(\d*)", x)[0]
def get_buf(x):
return re.findall("buf=(0x................)", x)[0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment