Skip to content
Snippets Groups Projects
Commit 8a43848a authored by Alex Apostolescu's avatar Alex Apostolescu
Browse files

checker: Fix wrong data type error


exis_status should be a list composed of the debug message and the exit
code.

Signed-off-by: default avatarAlex Apostolescu <alexx.apostolescu@gmail.com>
parent 893c7f5f
No related branches found
No related tags found
No related merge requests found
Pipeline #12666 passed
......@@ -142,7 +142,7 @@ def parse_ltrace_output(ltrace_output: str):
exit_status = ltrace_output.splitlines()[-1:]
for line in ltrace_output.splitlines():
if 'DBG' in line:
exit_status = line[line.rfind('DBG:'):line.rfind(')')] + exit_status
exit_status = [line[line.rfind('DBG:'):line.rfind(')')]] + exit_status
# Store addresses
heap_addresses = {}
......
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