Chromium Code Reviews| 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 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 7 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
| 8 # not work, but we expect it to not crash. | 8 # not work, but we expect it to not crash. |
| 9 'debug/debug-step-turbofan': [PASS, FAIL], | 9 'debug/debug-step-turbofan': [PASS, FAIL], |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 # Issue 5650: Unexpected order of break pauses with microtasks. | 21 # Issue 5650: Unexpected order of break pauses with microtasks. |
| 22 'debug/regress/regress-crbug-568477-2': [FAIL], | 22 'debug/regress/regress-crbug-568477-2': [FAIL], |
| 23 'debug/es6/debug-stepin-microtasks': [FAIL], | 23 'debug/es6/debug-stepin-microtasks': [FAIL], |
| 24 | 24 |
| 25 # Issue 5651: Context mismatch in ScopeIterator::Type() for eval default | 25 # Issue 5651: Context mismatch in ScopeIterator::Type() for eval default |
| 26 # parameter value | 26 # parameter value |
| 27 'debug/es6/debug-scope-default-param-with-eval': [FAIL], | 27 'debug/es6/debug-scope-default-param-with-eval': [FAIL], |
| 28 }], # ALWAYS | 28 }], # ALWAYS |
| 29 | 29 |
| 30 ############################################################################## | 30 ############################################################################## |
| 31 ['variant == stress', { | |
| 32 # TODO(jarin/mstarzinger): Functions with eval or debugger now get optimized | |
| 33 # with Turbofan, which has issues with the debugger issues. | |
| 34 'debug/debug-evaluate-locals': [FAIL], | |
|
rmcilroy
2016/11/22 14:03:44
This fails in the same way as turbo_opt below. It
| |
| 35 }], # 'stress == True' | |
| 36 | |
| 37 ############################################################################## | |
| 31 ['gc_stress == True', { | 38 ['gc_stress == True', { |
| 32 # Skip tests not suitable for GC stress. | 39 # Skip tests not suitable for GC stress. |
| 33 # Tests taking too long | 40 # Tests taking too long |
| 34 'debug/debug-stepout-scope-part1': [SKIP], | 41 'debug/debug-stepout-scope-part1': [SKIP], |
| 35 'debug/debug-stepout-scope-part2': [SKIP], | 42 'debug/debug-stepout-scope-part2': [SKIP], |
| 36 'debug/debug-stepout-scope-part3': [SKIP], | 43 'debug/debug-stepout-scope-part3': [SKIP], |
| 37 'debug/debug-stepout-scope-part4': [SKIP], | 44 'debug/debug-stepout-scope-part4': [SKIP], |
| 38 'debug/debug-stepout-scope-part5': [SKIP], | 45 'debug/debug-stepout-scope-part5': [SKIP], |
| 39 'debug/debug-stepout-scope-part6': [SKIP], | 46 'debug/debug-stepout-scope-part6': [SKIP], |
| 40 'debug/debug-stepout-scope-part7': [SKIP], | 47 'debug/debug-stepout-scope-part7': [SKIP], |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 87 | 94 |
| 88 ['arch == s390 or arch == s390x', { | 95 ['arch == s390 or arch == s390x', { |
| 89 | 96 |
| 90 # Stack manipulations in LiveEdit is not implemented for this arch. | 97 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 91 'debug/debug-liveedit-check-stack': [SKIP], | 98 'debug/debug-liveedit-check-stack': [SKIP], |
| 92 'debug/debug-liveedit-double-call': [SKIP], | 99 'debug/debug-liveedit-double-call': [SKIP], |
| 93 'debug/debug-liveedit-stack-padding': [SKIP], | 100 'debug/debug-liveedit-stack-padding': [SKIP], |
| 94 'debug/debug-liveedit-restart-frame': [SKIP], | 101 'debug/debug-liveedit-restart-frame': [SKIP], |
| 95 }], # 'arch == s390 or arch == s390x' | 102 }], # 'arch == s390 or arch == s390x' |
| 96 ] | 103 ] |
| OLD | NEW |