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 |
11 # not work, but we expect it to not crash. | 11 # not work, but we expect it to not crash. |
12 'debug/debug-step-turbofan': [PASS, FAIL], | 12 'debug/debug-step-turbofan': [PASS, FAIL], |
13 | 13 |
14 # Issue 5587: The eval'ed code is piped through Ignition and fails when being | 14 # Issue 5587: The eval'ed code is piped through Ignition and fails when being |
15 # live edited. This needs investigation. | 15 # live edited. This needs investigation. |
16 'debug/debug-liveedit-double-call': [SKIP], | 16 'debug/debug-liveedit-double-call': [SKIP], |
17 | 17 |
18 # Issue 3641: The new 'then' semantics suppress some exceptions. | 18 # Issue 3641: The new 'then' semantics suppress some exceptions. |
19 # These tests may be changed or removed when 'chain' is deprecated. | 19 # These tests may be changed or removed when 'chain' is deprecated. |
20 'debug/es6/debug-promises/reject-with-throw-in-reject': [FAIL], | 20 'debug/es6/debug-promises/reject-with-throw-in-reject': [FAIL], |
21 'debug/es6/debug-promises/reject-with-undefined-reject': [FAIL], | 21 'debug/es6/debug-promises/reject-with-undefined-reject': [FAIL], |
22 'debug/es6/debug-promises/reject-with-invalid-reject': [FAIL], | 22 'debug/es6/debug-promises/reject-with-invalid-reject': [FAIL], |
23 | 23 |
24 # Issue 5651: Context mismatch in ScopeIterator::Type() for eval default | 24 # Issue 5651: Context mismatch in ScopeIterator::Type() for eval default |
25 # parameter value | 25 # parameter value |
26 'debug/es6/debug-scope-default-param-with-eval': [FAIL], | 26 'debug/es6/debug-scope-default-param-with-eval': [FAIL], |
27 | 27 |
| 28 # Issue 5837: Investigate flakiness. |
| 29 'debug/es8/async-function-debug-scopes': [SKIP], |
| 30 |
28 # Slow test | 31 # Slow test |
29 'debug/debug-scopes': [PASS, SLOW], | 32 'debug/debug-scopes': [PASS, SLOW], |
30 | 33 |
31 # Too slow in debug mode and on slow platforms. | 34 # Too slow in debug mode and on slow platforms. |
32 'regress/regress-2318': [PASS, ['mode == debug or (arch != ia32 and arch != x6
4) or asan == True or msan == True', SKIP]], | 35 'regress/regress-2318': [PASS, ['mode == debug or (arch != ia32 and arch != x6
4) or asan == True or msan == True', SKIP]], |
33 }], # ALWAYS | 36 }], # ALWAYS |
34 | 37 |
35 ############################################################################## | 38 ############################################################################## |
36 ['variant == stress', { | 39 ['variant == stress', { |
37 # TODO(jarin/mstarzinger): Functions with eval or debugger now get optimized | 40 # TODO(jarin/mstarzinger): Functions with eval or debugger now get optimized |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 | 104 |
102 ['arch == s390 or arch == s390x', { | 105 ['arch == s390 or arch == s390x', { |
103 | 106 |
104 # Stack manipulations in LiveEdit is not implemented for this arch. | 107 # Stack manipulations in LiveEdit is not implemented for this arch. |
105 'debug/debug-liveedit-check-stack': [SKIP], | 108 'debug/debug-liveedit-check-stack': [SKIP], |
106 'debug/debug-liveedit-double-call': [SKIP], | 109 'debug/debug-liveedit-double-call': [SKIP], |
107 'debug/debug-liveedit-stack-padding': [SKIP], | 110 'debug/debug-liveedit-stack-padding': [SKIP], |
108 'debug/debug-liveedit-restart-frame': [SKIP], | 111 'debug/debug-liveedit-restart-frame': [SKIP], |
109 }], # 'arch == s390 or arch == s390x' | 112 }], # 'arch == s390 or arch == s390x' |
110 ] | 113 ] |
OLD | NEW |