Skip to content

Commit

Permalink
goldenrun: Filter wildcard faults if in exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
aewag committed Apr 27, 2023
1 parent 25f32d6 commit 9b0803b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions goldenrun.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,11 @@ def generate_wildcard_faults(fault, tbexec, tbinfo):
if instr == fault.address["end"].address:
wildcard_local_active = False

# Evaluate exclude ranges
if any(instr in region for region in fault.address_exclude):
logger.debug(f"Exclude {fault.address_exclude} filtered {hex(instr)}")
continue

# Analyze TB to find TB and instruction specific adjustments to
# the hitcounter of the expanded fault

Expand Down

0 comments on commit 9b0803b

Please sign in to comment.