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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 }], # 'gc_stress == True' | 42 }], # 'gc_stress == True' |
43 | 43 |
44 ############################################################################## | 44 ############################################################################## |
45 ['variant == turbofan_opt', { | 45 ['variant == turbofan_opt', { |
46 # TODO(mstarzinger): Debugger cannot materialize de-materialized functions. | 46 # TODO(mstarzinger): Debugger cannot materialize de-materialized functions. |
47 'debug/regress/regress-crbug-323936': [FAIL], | 47 'debug/regress/regress-crbug-323936': [FAIL], |
48 | 48 |
49 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 49 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
50 'debug/debug-evaluate-closure': [FAIL], | 50 'debug/debug-evaluate-closure': [FAIL], |
51 'debug/debug-evaluate-locals': [FAIL], | 51 'debug/debug-evaluate-locals': [FAIL], |
| 52 'debug/debug-liveedit-double-call': [FAIL], |
| 53 'debug/debug-set-variable-value': [FAIL], |
52 'debug/es6/debug-evaluate-blockscopes': [FAIL], | 54 'debug/es6/debug-evaluate-blockscopes': [FAIL], |
53 'debug/debug-liveedit-double-call': [FAIL], | |
54 }], # variant == turbofan_opt | 55 }], # variant == turbofan_opt |
55 | 56 |
56 ############################################################################## | 57 ############################################################################## |
57 ['variant == ignition or variant == ignition_staging', { | 58 ['variant == ignition or variant == ignition_staging', { |
58 # TODO(5587): fails to liveedit evaled code. | 59 # TODO(5587): fails to liveedit evaled code. |
59 'debug/debug-liveedit-double-call': [FAIL], | 60 'debug/debug-liveedit-double-call': [FAIL], |
60 }], # variant == ignition | 61 }], # variant == ignition |
61 | 62 |
62 ############################################################################## | 63 ############################################################################## |
63 ['variant == ignition_turbofan', { | 64 ['variant == ignition_turbofan', { |
(...skipping 23 matching lines...) Expand all Loading... |
87 | 88 |
88 ['arch == s390 or arch == s390x', { | 89 ['arch == s390 or arch == s390x', { |
89 | 90 |
90 # Stack manipulations in LiveEdit is not implemented for this arch. | 91 # Stack manipulations in LiveEdit is not implemented for this arch. |
91 'debug/debug-liveedit-check-stack': [SKIP], | 92 'debug/debug-liveedit-check-stack': [SKIP], |
92 'debug/debug-liveedit-double-call': [SKIP], | 93 'debug/debug-liveedit-double-call': [SKIP], |
93 'debug/debug-liveedit-stack-padding': [SKIP], | 94 'debug/debug-liveedit-stack-padding': [SKIP], |
94 'debug/debug-liveedit-restart-frame': [SKIP], | 95 'debug/debug-liveedit-restart-frame': [SKIP], |
95 }], # 'arch == s390 or arch == s390x' | 96 }], # 'arch == s390 or arch == s390x' |
96 ] | 97 ] |
OLD | NEW |