| Index: test/mjsunit/fuzz-natives-part3.js
 | 
| diff --git a/test/mjsunit/fuzz-natives-part3.js b/test/mjsunit/fuzz-natives-part3.js
 | 
| index fa64daa075a16eae954de2158dcc383342a21d39..928fb4634fcd66d704b4639ffbb230f720f111c6 100644
 | 
| --- a/test/mjsunit/fuzz-natives-part3.js
 | 
| +++ b/test/mjsunit/fuzz-natives-part3.js
 | 
| @@ -153,6 +153,7 @@ var knownProblems = {
 | 
|    "ParallelRecompile": true,
 | 
|    "InstallRecompiledCode": true,
 | 
|    "NotifyDeoptimized": true,
 | 
| +  "NotifyStubFailure": true,
 | 
|    "NotifyOSR": true,
 | 
|    "CreateObjectLiteralBoilerplate": true,
 | 
|    "CloneLiteralBoilerplate": true,
 | 
| @@ -162,6 +163,8 @@ var knownProblems = {
 | 
|    "ResolvePossiblyDirectEval": true,
 | 
|    "Log": true,
 | 
|    "DeclareGlobals": true,
 | 
| +  "ArrayConstructor": true,
 | 
| +  "InternalArrayConstructor": true,
 | 
|  
 | 
|    "PromoteScheduledException": true,
 | 
|    "DeleteHandleScopeExtensions": true,
 | 
| @@ -213,7 +216,9 @@ var knownProblems = {
 | 
|  
 | 
|  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() {
 | 
| 
 |