Skip to content

Commit

Permalink
Fuzzer: Ignore our current bug with the type of br_if (#3775)
Browse files Browse the repository at this point in the history
We give br_if a too specific type: #3767

This is only noticeable with GC, and in rare cases where the type of br_if
is actually used - which realistically it never is, so really just fuzzer testcases.
  • Loading branch information
kripken authored Apr 6, 2021
1 parent e9fcf44 commit cb8cc08
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/fuzz_opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,12 @@ def fix_spec_output(out):
def run_vm(cmd):
# ignore some vm assertions, if bugs have already been filed
known_issues = [
'local count too large', # ignore this; can be caused by flatten, ssa, etc. passes
# can be caused by flatten, ssa, etc. passes
'local count too large',
# https://github.com/WebAssembly/binaryen/issues/3767
# note that this text is a little too broad, but the problem is rare
# enough that it's unlikely to hide an unrelated issue
'found br_if of type',
]
try:
return run(cmd)
Expand Down

0 comments on commit cb8cc08

Please sign in to comment.