Skip to content

Commit cb8cc08

Browse files
authored
Fuzzer: Ignore our current bug with the type of br_if (#3775)
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.
1 parent e9fcf44 commit cb8cc08

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

scripts/fuzz_opt.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,12 @@ def fix_spec_output(out):
351351
def run_vm(cmd):
352352
# ignore some vm assertions, if bugs have already been filed
353353
known_issues = [
354-
'local count too large', # ignore this; can be caused by flatten, ssa, etc. passes
354+
# can be caused by flatten, ssa, etc. passes
355+
'local count too large',
356+
# https://github.com/WebAssembly/binaryen/issues/3767
357+
# note that this text is a little too broad, but the problem is rare
358+
# enough that it's unlikely to hide an unrelated issue
359+
'found br_if of type',
355360
]
356361
try:
357362
return run(cmd)

0 commit comments

Comments
 (0)