Skip to content

Commit

Permalink
Ignore added "functions" in MEA comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
vmordan committed Jun 13, 2024
1 parent 0bd38ad commit f612ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mea/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def __convert_call_tree_filter(error_trace: dict, args: dict = None) -> list:
# TODO: check this in core (one node for call and return edges).
double_funcs = {}
for edge in error_trace['edges']:
if 'entry_point' in edge:
if 'entry_point' in edge or 'ignore MEA' in edge:
continue
if 'enter' in edge and 'return' in edge:
double_funcs[edge['enter']] = edge['return']
Expand Down

0 comments on commit f612ac8

Please sign in to comment.