| 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 and on slow platforms. |
| 32 'regress/regress-2318': [PASS, ['mode == debug or (arch != ia32 and arch != x6
4) or asan == True or msan == True', SKIP]], |
| 30 }], # ALWAYS | 33 }], # ALWAYS |
| 31 | 34 |
| 32 ############################################################################## | 35 ############################################################################## |
| 33 ['variant == stress', { | 36 ['variant == stress', { |
| 34 # TODO(jarin/mstarzinger): Functions with eval or debugger now get optimized | 37 # TODO(jarin/mstarzinger): Functions with eval or debugger now get optimized |
| 35 # with Turbofan, which has issues with the debugger issues. | 38 # with Turbofan, which has issues with the debugger issues. |
| 36 'debug/debug-evaluate-locals': [FAIL], | 39 'debug/debug-evaluate-locals': [FAIL], |
| 37 }], # 'stress == True' | 40 }], # 'stress == True' |
| 38 | 41 |
| 39 ############################################################################## | 42 ############################################################################## |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 101 |
| 99 ['arch == s390 or arch == s390x', { | 102 ['arch == s390 or arch == s390x', { |
| 100 | 103 |
| 101 # Stack manipulations in LiveEdit is not implemented for this arch. | 104 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 102 'debug/debug-liveedit-check-stack': [SKIP], | 105 'debug/debug-liveedit-check-stack': [SKIP], |
| 103 'debug/debug-liveedit-double-call': [SKIP], | 106 'debug/debug-liveedit-double-call': [SKIP], |
| 104 'debug/debug-liveedit-stack-padding': [SKIP], | 107 'debug/debug-liveedit-stack-padding': [SKIP], |
| 105 'debug/debug-liveedit-restart-frame': [SKIP], | 108 'debug/debug-liveedit-restart-frame': [SKIP], |
| 106 }], # 'arch == s390 or arch == s390x' | 109 }], # 'arch == s390 or arch == s390x' |
| 107 ] | 110 ] |
| OLD | NEW |