summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-05-18 11:05:30 -0700
committerGitHub <noreply@github.com>2023-05-18 18:05:30 +0000
commit8ec55f6ac81f4b0d67e3ab8ca14736ff3fbdc671 (patch)
tree06361194a9cf4fdc9edd70a234dcf71804ef08ac /scripts
parentd7d17c925af6ee1fd78f39d3fbf2cb22de9e74eb (diff)
downloadbinaryen-8ec55f6ac81f4b0d67e3ab8ca14736ff3fbdc671.tar.gz
binaryen-8ec55f6ac81f4b0d67e3ab8ca14736ff3fbdc671.tar.bz2
binaryen-8ec55f6ac81f4b0d67e3ab8ca14736ff3fbdc671.zip
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).
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/fuzz_opt.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py
index 452ab84f8..18bd95828 100755
--- a/scripts/fuzz_opt.py
+++ b/scripts/fuzz_opt.py
@@ -616,6 +616,9 @@ def run_vm(cmd):
# 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',
+ # this text is emitted from V8 when it runs out of memory during a
+ # GC allocation.
+ 'out of memory',
# all host limitations are arbitrary and may differ between VMs and
# also be affected by optimizations, so ignore them.
# this is the prefix that the binaryen interpreter emits. For V8,