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 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 # https://bugs.chromium.org/p/v8/issues/detail?id=5411 | 59 # https://bugs.chromium.org/p/v8/issues/detail?id=5411 |
60 'debug/es8/async-debug-caught-exception-cases0': [SKIP], | 60 'debug/es8/async-debug-caught-exception-cases0': [SKIP], |
61 'debug/es8/async-debug-caught-exception-cases1': [SKIP], | 61 'debug/es8/async-debug-caught-exception-cases1': [SKIP], |
62 'debug/es8/async-debug-caught-exception-cases2': [SKIP], | 62 'debug/es8/async-debug-caught-exception-cases2': [SKIP], |
63 'debug/es8/async-debug-caught-exception-cases3': [SKIP], | 63 'debug/es8/async-debug-caught-exception-cases3': [SKIP], |
64 'debug/es8/async-function-debug-scopes': [SKIP], | 64 'debug/es8/async-function-debug-scopes': [SKIP], |
65 }], # 'gc_stress == True' | 65 }], # 'gc_stress == True' |
66 | 66 |
67 ############################################################################## | 67 ############################################################################## |
68 ['variant == turbofan_opt', { | 68 ['variant == turbofan_opt', { |
| 69 # TODO(mstarzinger): Debugger cannot materialize de-materialized functions. |
| 70 'debug/regress/regress-crbug-323936': [FAIL], |
| 71 |
69 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 72 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
| 73 'debug/debug-evaluate-closure': [FAIL], |
70 'debug/debug-evaluate-locals': [FAIL], | 74 'debug/debug-evaluate-locals': [FAIL], |
| 75 'debug/debug-liveedit-double-call': [FAIL], |
| 76 'debug/debug-set-variable-value': [FAIL], |
| 77 'debug/es6/debug-evaluate-blockscopes': [FAIL], |
71 }], # variant == turbofan_opt | 78 }], # variant == turbofan_opt |
72 | 79 |
73 ############################################################################## | 80 ############################################################################## |
74 ['variant == ignition or variant == ignition_staging', { | 81 ['variant == ignition or variant == ignition_staging', { |
75 # TODO(5587): fails to liveedit evaled code. | 82 # TODO(5587): fails to liveedit evaled code. |
76 'debug/debug-liveedit-double-call': [FAIL], | 83 'debug/debug-liveedit-double-call': [FAIL], |
77 }], # variant == ignition | 84 }], # variant == ignition |
78 | 85 |
79 ############################################################################## | 86 ############################################################################## |
80 ['variant == ignition_turbofan', { | 87 ['variant == ignition_turbofan', { |
(...skipping 13 matching lines...) Expand all Loading... |
94 | 101 |
95 ['arch == s390 or arch == s390x', { | 102 ['arch == s390 or arch == s390x', { |
96 | 103 |
97 # Stack manipulations in LiveEdit is not implemented for this arch. | 104 # Stack manipulations in LiveEdit is not implemented for this arch. |
98 'debug/debug-liveedit-check-stack': [SKIP], | 105 'debug/debug-liveedit-check-stack': [SKIP], |
99 'debug/debug-liveedit-double-call': [SKIP], | 106 'debug/debug-liveedit-double-call': [SKIP], |
100 'debug/debug-liveedit-stack-padding': [SKIP], | 107 'debug/debug-liveedit-stack-padding': [SKIP], |
101 'debug/debug-liveedit-restart-frame': [SKIP], | 108 'debug/debug-liveedit-restart-frame': [SKIP], |
102 }], # 'arch == s390 or arch == s390x' | 109 }], # 'arch == s390 or arch == s390x' |
103 ] | 110 ] |
OLD | NEW |