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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 # https://bugs.chromium.org/p/v8/issues/detail?id=5411 | 55 # https://bugs.chromium.org/p/v8/issues/detail?id=5411 |
56 'debug/es8/async-debug-caught-exception-cases0': [SKIP], | 56 'debug/es8/async-debug-caught-exception-cases0': [SKIP], |
57 'debug/es8/async-debug-caught-exception-cases1': [SKIP], | 57 'debug/es8/async-debug-caught-exception-cases1': [SKIP], |
58 'debug/es8/async-debug-caught-exception-cases2': [SKIP], | 58 'debug/es8/async-debug-caught-exception-cases2': [SKIP], |
59 'debug/es8/async-debug-caught-exception-cases3': [SKIP], | 59 'debug/es8/async-debug-caught-exception-cases3': [SKIP], |
60 'debug/es8/async-function-debug-scopes': [SKIP], | 60 'debug/es8/async-function-debug-scopes': [SKIP], |
61 }], # 'gc_stress == True' | 61 }], # 'gc_stress == True' |
62 | 62 |
63 ############################################################################## | 63 ############################################################################## |
64 ['variant == turbofan_opt', { | 64 ['variant == turbofan_opt', { |
65 # TODO(mstarzinger): Debugger cannot materialize de-materialized functions. | |
66 'debug/regress/regress-crbug-323936': [FAIL], | |
67 | |
68 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 65 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
69 'debug/debug-evaluate-closure': [FAIL], | |
70 'debug/debug-evaluate-locals': [FAIL], | 66 'debug/debug-evaluate-locals': [FAIL], |
71 'debug/debug-set-variable-value': [FAIL], | |
72 'debug/es6/debug-evaluate-blockscopes': [FAIL], | |
73 }], # variant == turbofan_opt | 67 }], # variant == turbofan_opt |
74 | 68 |
75 ############################################################################## | 69 ############################################################################## |
76 ['variant == asm_wasm', { | 70 ['variant == asm_wasm', { |
77 '*': [SKIP], | 71 '*': [SKIP], |
78 }], # variant == asm_wasm | 72 }], # variant == asm_wasm |
79 | 73 |
80 ############################################################################## | 74 ############################################################################## |
81 ['variant == wasm_traps', { | 75 ['variant == wasm_traps', { |
82 '*': [SKIP], | 76 '*': [SKIP], |
83 }], # variant == wasm_traps | 77 }], # variant == wasm_traps |
84 | 78 |
85 ['arch == s390 or arch == s390x', { | 79 ['arch == s390 or arch == s390x', { |
86 | 80 |
87 # Stack manipulations in LiveEdit is not implemented for this arch. | 81 # Stack manipulations in LiveEdit is not implemented for this arch. |
88 'debug/debug-liveedit-check-stack': [SKIP], | 82 'debug/debug-liveedit-check-stack': [SKIP], |
89 'debug/debug-liveedit-double-call': [SKIP], | 83 'debug/debug-liveedit-double-call': [SKIP], |
90 'debug/debug-liveedit-stack-padding': [SKIP], | 84 'debug/debug-liveedit-stack-padding': [SKIP], |
91 'debug/debug-liveedit-restart-frame': [SKIP], | 85 'debug/debug-liveedit-restart-frame': [SKIP], |
92 }], # 'arch == s390 or arch == s390x' | 86 }], # 'arch == s390 or arch == s390x' |
93 ] | 87 ] |
OLD | NEW |