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 | |
72 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 69 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
73 'debug/debug-evaluate-closure': [FAIL], | |
74 'debug/debug-evaluate-locals': [FAIL], | 70 '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], | |
78 }], # variant == turbofan_opt | 71 }], # variant == turbofan_opt |
79 | 72 |
80 ############################################################################## | 73 ############################################################################## |
81 ['variant == ignition or variant == ignition_staging', { | 74 ['variant == ignition or variant == ignition_staging', { |
82 # TODO(5587): fails to liveedit evaled code. | 75 # TODO(5587): fails to liveedit evaled code. |
83 'debug/debug-liveedit-double-call': [FAIL], | 76 'debug/debug-liveedit-double-call': [FAIL], |
84 }], # variant == ignition | 77 }], # variant == ignition |
85 | 78 |
86 ############################################################################## | 79 ############################################################################## |
87 ['variant == ignition_turbofan', { | 80 ['variant == ignition_turbofan', { |
(...skipping 13 matching lines...) Expand all Loading... |
101 | 94 |
102 ['arch == s390 or arch == s390x', { | 95 ['arch == s390 or arch == s390x', { |
103 | 96 |
104 # Stack manipulations in LiveEdit is not implemented for this arch. | 97 # Stack manipulations in LiveEdit is not implemented for this arch. |
105 'debug/debug-liveedit-check-stack': [SKIP], | 98 'debug/debug-liveedit-check-stack': [SKIP], |
106 'debug/debug-liveedit-double-call': [SKIP], | 99 'debug/debug-liveedit-double-call': [SKIP], |
107 'debug/debug-liveedit-stack-padding': [SKIP], | 100 'debug/debug-liveedit-stack-padding': [SKIP], |
108 'debug/debug-liveedit-restart-frame': [SKIP], | 101 'debug/debug-liveedit-restart-frame': [SKIP], |
109 }], # 'arch == s390 or arch == s390x' | 102 }], # 'arch == s390 or arch == s390x' |
110 ] | 103 ] |
OLD | NEW |