summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/fuzz-natives-part2.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/fuzz-natives-part2.js')
-rw-r--r--deps/v8/test/mjsunit/fuzz-natives-part2.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/deps/v8/test/mjsunit/fuzz-natives-part2.js b/deps/v8/test/mjsunit/fuzz-natives-part2.js
index 699a341783..ec84f35ada 100644
--- a/deps/v8/test/mjsunit/fuzz-natives-part2.js
+++ b/deps/v8/test/mjsunit/fuzz-natives-part2.js
@@ -153,6 +153,7 @@ var knownProblems = {
"ParallelRecompile": true,
"InstallRecompiledCode": true,
"NotifyDeoptimized": true,
+ "NotifyStubFailure": true,
"NotifyOSR": true,
"CreateObjectLiteralBoilerplate": true,
"CloneLiteralBoilerplate": true,
@@ -206,11 +207,18 @@ var knownProblems = {
// Only applicable to generators.
"_GeneratorNext": true,
"_GeneratorThrow": true,
+
+ // Only applicable to DataViews.
+ "DataViewGetBuffer": true,
+ "DataViewGetByteLength": true,
+ "DataViewGetByteOffset": true
};
var currentlyUncallable = {
// We need to find a way to test this without breaking the system.
- "SystemBreak": true
+ "SystemBreak": true,
+ // Inserts an int3/stop instruction when run with --always-opt.
+ "_DebugBreakInOptimizedCode": true
};
function testNatives() {