summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/fuzz-natives.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/fuzz-natives.js')
-rw-r--r--deps/v8/test/mjsunit/fuzz-natives.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/fuzz-natives.js b/deps/v8/test/mjsunit/fuzz-natives.js
index cd5066767..d906eb8a4 100644
--- a/deps/v8/test/mjsunit/fuzz-natives.js
+++ b/deps/v8/test/mjsunit/fuzz-natives.js
@@ -95,7 +95,11 @@ function testArgumentTypes(name, argc) {
var knownProblems = {
"Abort": true,
-
+
+ // Avoid calling the concat operation, because weird lengths
+ // may lead to out-of-memory.
+ "StringBuilderConcat": true,
+
// These functions use pseudo-stack-pointers and are not robust
// to unexpected integer values.
"DebugEvaluate": true,
@@ -114,7 +118,7 @@ var knownProblems = {
// the rest of the tests.
"DisableAccessChecks": true,
"EnableAccessChecks": true,
-
+
// These functions should not be callable as runtime functions.
"NewContext": true,
"NewArgumentsFast": true,