Skip to content

Commit 8ec55f6

Browse files
authored
Fuzzer: Ignore testcases that V8 OOMs on (#5733)
We already ignore OOMs in the interpreter. This adds the syntax for V8, which I saw an error on now (on an array.new of a massive size).
1 parent d7d17c9 commit 8ec55f6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/fuzz_opt.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -616,6 +616,9 @@ def filter_known_issues(output):
616616
# note that this text is a little too broad, but the problem is rare
617617
# enough that it's unlikely to hide an unrelated issue
618618
'found br_if of type',
619+
# this text is emitted from V8 when it runs out of memory during a
620+
# GC allocation.
621+
'out of memory',
619622
# all host limitations are arbitrary and may differ between VMs and
620623
# also be affected by optimizations, so ignore them.
621624
# this is the prefix that the binaryen interpreter emits. For V8,

0 commit comments

Comments
 (0)