| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 # Tests taking too long | 46 # Tests taking too long |
| 47 'debug/debug-stepout-scope-part1': [SKIP], | 47 'debug/debug-stepout-scope-part1': [SKIP], |
| 48 'debug/debug-stepout-scope-part2': [SKIP], | 48 'debug/debug-stepout-scope-part2': [SKIP], |
| 49 'debug/debug-stepout-scope-part3': [SKIP], | 49 'debug/debug-stepout-scope-part3': [SKIP], |
| 50 'debug/debug-stepout-scope-part4': [SKIP], | 50 'debug/debug-stepout-scope-part4': [SKIP], |
| 51 'debug/debug-stepout-scope-part5': [SKIP], | 51 'debug/debug-stepout-scope-part5': [SKIP], |
| 52 'debug/debug-stepout-scope-part6': [SKIP], | 52 'debug/debug-stepout-scope-part6': [SKIP], |
| 53 'debug/debug-stepout-scope-part7': [SKIP], | 53 'debug/debug-stepout-scope-part7': [SKIP], |
| 54 'debug/debug-stepout-scope-part8': [SKIP], | 54 'debug/debug-stepout-scope-part8': [SKIP], |
| 55 | 55 |
| 56 # BUG(chromium:664490) | |
| 57 'debug/debug-scopes': [SKIP], | |
| 58 | |
| 59 # Async function tests taking too long | 56 # Async function tests taking too long |
| 60 # https://bugs.chromium.org/p/v8/issues/detail?id=5411 | 57 # https://bugs.chromium.org/p/v8/issues/detail?id=5411 |
| 61 'debug/es8/async-debug-caught-exception-cases0': [SKIP], | 58 'debug/es8/async-debug-caught-exception-cases0': [SKIP], |
| 62 'debug/es8/async-debug-caught-exception-cases1': [SKIP], | 59 'debug/es8/async-debug-caught-exception-cases1': [SKIP], |
| 63 'debug/es8/async-debug-caught-exception-cases2': [SKIP], | 60 'debug/es8/async-debug-caught-exception-cases2': [SKIP], |
| 64 'debug/es8/async-debug-caught-exception-cases3': [SKIP], | 61 'debug/es8/async-debug-caught-exception-cases3': [SKIP], |
| 65 'debug/es8/async-function-debug-scopes': [SKIP], | 62 'debug/es8/async-function-debug-scopes': [SKIP], |
| 66 }], # 'gc_stress == True' | 63 }], # 'gc_stress == True' |
| 67 | 64 |
| 68 ############################################################################## | 65 ############################################################################## |
| 69 ['variant == turbofan_opt', { | 66 ['variant == turbofan_opt', { |
| 70 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. | 67 # TODO(jarin/mstarzinger): Investigate debugger issues with TurboFan. |
| 71 'debug/debug-evaluate-locals': [FAIL], | 68 'debug/debug-evaluate-locals': [FAIL], |
| 72 }], # variant == turbofan_opt | 69 }], # variant == turbofan_opt |
| 73 | 70 |
| 74 ############################################################################## | 71 ############################################################################## |
| 75 ['variant == wasm_traps', { | 72 ['variant == wasm_traps', { |
| 76 '*': [SKIP], | 73 '*': [SKIP], |
| 77 }], # variant == wasm_traps | 74 }], # variant == wasm_traps |
| 78 | 75 |
| 79 ['arch == s390 or arch == s390x', { | 76 ['arch == s390 or arch == s390x', { |
| 80 | 77 |
| 81 # Stack manipulations in LiveEdit is not implemented for this arch. | 78 # Stack manipulations in LiveEdit is not implemented for this arch. |
| 82 'debug/debug-liveedit-check-stack': [SKIP], | 79 'debug/debug-liveedit-check-stack': [SKIP], |
| 83 'debug/debug-liveedit-double-call': [SKIP], | 80 'debug/debug-liveedit-double-call': [SKIP], |
| 84 'debug/debug-liveedit-stack-padding': [SKIP], | 81 'debug/debug-liveedit-stack-padding': [SKIP], |
| 85 'debug/debug-liveedit-restart-frame': [SKIP], | 82 'debug/debug-liveedit-restart-frame': [SKIP], |
| 86 }], # 'arch == s390 or arch == s390x' | 83 }], # 'arch == s390 or arch == s390x' |
| 87 ] | 84 ] |
| OLD | NEW |