| OLD | NEW |
| 1 # Copyright 2014 the V8 project authors. All rights reserved. | 1 # Copyright 2014 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 [ | 5 [ |
| 6 [ALWAYS, { | 6 [ALWAYS, { |
| 7 # These are designed to crash: | 7 # These are designed to crash: |
| 8 "Abort": [SKIP], | 8 "Abort": [SKIP], |
| 9 "AbortJS": [SKIP], | 9 "AbortJS": [SKIP], |
| 10 "SystemBreak": [SKIP], | 10 "SystemBreak": [SKIP], |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "NewSloppyArguments": [SKIP], | 39 "NewSloppyArguments": [SKIP], |
| 40 "NewStrictArguments": [SKIP], | 40 "NewStrictArguments": [SKIP], |
| 41 "ArrayConstructor": [SKIP], | 41 "ArrayConstructor": [SKIP], |
| 42 "InternalArrayConstructor": [SKIP], | 42 "InternalArrayConstructor": [SKIP], |
| 43 "FinalizeInstanceSize": [SKIP], | 43 "FinalizeInstanceSize": [SKIP], |
| 44 "PromoteScheduledException": [SKIP], | 44 "PromoteScheduledException": [SKIP], |
| 45 "NewFunctionContext": [SKIP], | 45 "NewFunctionContext": [SKIP], |
| 46 "PushWithContext": [SKIP], | 46 "PushWithContext": [SKIP], |
| 47 "PushCatchContext": [SKIP], | 47 "PushCatchContext": [SKIP], |
| 48 "PushModuleContext": [SKIP], | 48 "PushModuleContext": [SKIP], |
| 49 "LoadLookupSlot": [SKIP], |
| 50 "LoadLookupSlotNoReferenceError": [SKIP], |
| 51 "ResolvePossiblyDirectEval": [SKIP], |
| 52 "ForInInit": [SKIP], |
| 53 "ForInNext": [SKIP], |
| 49 | 54 |
| 50 # TODO(jkummerow): Figure out what to do about inlined functions. | 55 # TODO(jkummerow): Figure out what to do about inlined functions. |
| 51 "_GeneratorNext": [SKIP], | 56 "_GeneratorNext": [SKIP], |
| 52 "_GeneratorThrow": [SKIP], | 57 "_GeneratorThrow": [SKIP], |
| 53 "_GetCachedArrayIndex": [SKIP], | 58 "_GetCachedArrayIndex": [SKIP], |
| 54 "_HasCachedArrayIndex": [SKIP], | 59 "_HasCachedArrayIndex": [SKIP], |
| 55 "_IsStringWrapperSafeForDefaultValueOf": [SKIP], | 60 "_IsStringWrapperSafeForDefaultValueOf": [SKIP], |
| 56 "_OneByteSeqStringSetChar": [SKIP], | 61 "_OneByteSeqStringSetChar": [SKIP], |
| 57 "_RegExpConstructResult": [SKIP], | 62 "_RegExpConstructResult": [SKIP], |
| 58 "_TwoByteSeqStringSetChar": [SKIP], | 63 "_TwoByteSeqStringSetChar": [SKIP], |
| 59 | 64 |
| 60 # These are slow. | 65 # These are slow. |
| 61 "DebugEvaluate": [PASS, SLOW], | 66 "DebugEvaluate": [PASS, SLOW], |
| 62 "DebugReferencedBy": [PASS, SLOW], | 67 "DebugReferencedBy": [PASS, SLOW], |
| 63 "SetAccessorProperty": [PASS, SLOW], | 68 "SetAccessorProperty": [PASS, SLOW], |
| 64 "SetScopeVariableValue": [PASS, SLOW], | 69 "SetScopeVariableValue": [PASS, SLOW], |
| 65 }] # ALWAYS | 70 }] # ALWAYS |
| 66 ] | 71 ] |
| OLD | NEW |