| OLD | NEW |
| 1 # Copyright 2016 the V8 project authors. All rights reserved. | 1 # Copyright 2016 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 # All tests in the bug directory are expected to fail. | 7 # All tests in the bug directory are expected to fail. |
| 8 'bugs/*': [FAIL], | 8 'bugs/*': [FAIL], |
| 9 | 9 |
| 10 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 10 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
| 11 # not work, but we expect it to not crash. | 11 # not work, but we expect it to not crash. |
| 12 'debug/debug-step-turbofan': [PASS, FAIL], | 12 'debug/debug-step-turbofan': [PASS, FAIL], |
| 13 | 13 |
| 14 # Issue 5587: The eval'ed code is piped through Ignition and fails when being | 14 # Issue 5587: The eval'ed code is piped through Ignition and fails when being |
| 15 # live edited. This needs investigation. | 15 # live edited. This needs investigation. |
| 16 'debug/debug-liveedit-double-call': [SKIP], | 16 'debug/debug-liveedit-double-call': [SKIP], |
| 17 | 17 |
| 18 # Issue 3641: The new 'then' semantics suppress some exceptions. | 18 # Issue 3641: The new 'then' semantics suppress some exceptions. |
| 19 # These tests may be changed or removed when 'chain' is deprecated. | 19 # These tests may be changed or removed when 'chain' is deprecated. |
| 20 'debug/es6/debug-promises/reject-with-throw-in-reject': [FAIL], | 20 'debug/es6/debug-promises/reject-with-throw-in-reject': [FAIL], |
| 21 'debug/es6/debug-promises/reject-with-undefined-reject': [FAIL], | 21 'debug/es6/debug-promises/reject-with-undefined-reject': [FAIL], |
| 22 'debug/es6/debug-promises/reject-with-invalid-reject': [FAIL], | 22 'debug/es6/debug-promises/reject-with-invalid-reject': [FAIL], |
| 23 | 23 |
| 24 # Issue 5651: Context mismatch in ScopeIterator::Type() for eval default | 24 # Issue 5651: Context mismatch in ScopeIterator::Type() for eval default |
| 25 # parameter value | 25 # parameter value |
| 26 'debug/es6/debug-scope-default-param-with-eval': [FAIL], | 26 'debug/es6/debug-scope-default-param-with-eval': [FAIL], |
| 27 | 27 |
| 28 # Slow test | 28 # Slow test |
| 29 'debug/debug-scopes': [PASS, SLOW], | 29 'debug/debug-scopes': [PASS, SLOW], |
| 30 | |
| 31 # Too slow in debug mode with --stress-opt mode. | |
| 32 'regress/regress-2318': [PASS, ['mode == debug or (arch != ia32 and arch != x6
4)', SKIP]], | |
| 33 }], # ALWAYS | 30 }], # ALWAYS |
| 34 | 31 |
| 35 ############################################################################## | 32 ############################################################################## |
| 36 ['variant == stress', { | 33 ['variant == stress', { |
| 37 # TODO(jarin/mstarzinger): Functions with eval or debugger now get optimized | 34 # TODO(jarin/mstarzinger): Functions with eval or debugger now get optimized |
| 38 # with Turbofan, which has issues with the debugger issues. | 35 # with Turbofan, which has issues with the debugger issues. |
| 39 'debug/debug-evaluate-locals': [FAIL], | 36 'debug/debug-evaluate-locals': [FAIL], |
| 40 }], # 'stress == True' | 37 }], # 'stress == True' |
| 41 | 38 |
| 42 ############################################################################## | 39 ############################################################################## |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 | 98 |
| 102 ['arch == s390 or arch == s390x', { | 99 ['arch == s390 or arch == s390x', { |
| 103 | 100 |
| 104 # Stack manipulations in LiveEdit is not implemented for this arch. | 101 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 105 'debug/debug-liveedit-check-stack': [SKIP], | 102 'debug/debug-liveedit-check-stack': [SKIP], |
| 106 'debug/debug-liveedit-double-call': [SKIP], | 103 'debug/debug-liveedit-double-call': [SKIP], |
| 107 'debug/debug-liveedit-stack-padding': [SKIP], | 104 'debug/debug-liveedit-stack-padding': [SKIP], |
| 108 'debug/debug-liveedit-restart-frame': [SKIP], | 105 'debug/debug-liveedit-restart-frame': [SKIP], |
| 109 }], # 'arch == s390 or arch == s390x' | 106 }], # 'arch == s390 or arch == s390x' |
| 110 ] | 107 ] |
| OLD | NEW |