OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 | 52 |
53 # Issue 3784: setters-on-elements is flaky | 53 # Issue 3784: setters-on-elements is flaky |
54 'setters-on-elements': [PASS, FAIL], | 54 'setters-on-elements': [PASS, FAIL], |
55 | 55 |
56 # Issue 3641: The new 'then' semantics suppress some exceptions. | 56 # Issue 3641: The new 'then' semantics suppress some exceptions. |
57 # These tests may be changed or removed when 'chain' is deprecated. | 57 # These tests may be changed or removed when 'chain' is deprecated. |
58 'es6/debug-promises/reject-with-throw-in-reject': [FAIL], | 58 'es6/debug-promises/reject-with-throw-in-reject': [FAIL], |
59 'es6/debug-promises/reject-with-undefined-reject': [FAIL], | 59 'es6/debug-promises/reject-with-undefined-reject': [FAIL], |
60 'es6/debug-promises/reject-with-invalid-reject': [FAIL], | 60 'es6/debug-promises/reject-with-invalid-reject': [FAIL], |
61 | 61 |
62 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | |
63 # not work, but we expect it to not crash. | |
64 'debug-step-turbofan': [PASS, FAIL], | |
65 | |
66 # Issue 5587: The eval'ed code is piped through Ignition and fails when being | 62 # Issue 5587: The eval'ed code is piped through Ignition and fails when being |
67 # live edited. This needs investigation. | 63 # live edited. This needs investigation. |
68 'debug-liveedit-double-call': [SKIP], | 64 'debug-liveedit-double-call': [SKIP], |
69 | 65 |
70 ############################################################################## | 66 ############################################################################## |
71 # Too slow in debug mode with --stress-opt mode. | 67 # Too slow in debug mode with --stress-opt mode. |
72 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 68 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
73 | 69 |
74 ############################################################################## | 70 ############################################################################## |
75 # Too slow in debug mode for validation of elements. | 71 # Too slow in debug mode for validation of elements. |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 'getters-on-elements': [SKIP], | 208 'getters-on-elements': [SKIP], |
213 'es6/block-let-crankshaft': [SKIP], | 209 'es6/block-let-crankshaft': [SKIP], |
214 'opt-elements-kind': [SKIP], | 210 'opt-elements-kind': [SKIP], |
215 'osr-elements-kind': [SKIP], | 211 'osr-elements-kind': [SKIP], |
216 'regress/regress-crbug-137689': [SKIP], | 212 'regress/regress-crbug-137689': [SKIP], |
217 'regress/regress-165637': [SKIP], | 213 'regress/regress-165637': [SKIP], |
218 'regress/regress-2249': [SKIP], | 214 'regress/regress-2249': [SKIP], |
219 'regress/regress-4121': [SKIP], | 215 'regress/regress-4121': [SKIP], |
220 'compare-known-objects-slow': [SKIP], | 216 'compare-known-objects-slow': [SKIP], |
221 # Tests taking too long | 217 # Tests taking too long |
222 'debug-stepout-scope-part8': [SKIP], | |
223 'mirror-object': [SKIP], | 218 'mirror-object': [SKIP], |
224 'packed-elements': [SKIP], | 219 'packed-elements': [SKIP], |
225 'regress/regress-1122': [SKIP], | 220 'regress/regress-1122': [SKIP], |
226 'regress/regress-331444': [SKIP], | 221 'regress/regress-331444': [SKIP], |
227 'regress/regress-353551': [SKIP], | 222 'regress/regress-353551': [SKIP], |
228 'regress/regress-crbug-119926': [SKIP], | 223 'regress/regress-crbug-119926': [SKIP], |
229 'regress/short-circuit': [SKIP], | 224 'regress/short-circuit': [SKIP], |
230 'stack-traces-overflow': [SKIP], | 225 'stack-traces-overflow': [SKIP], |
231 'unicode-test': [SKIP], | 226 'unicode-test': [SKIP], |
232 'whitespaces': [SKIP], | 227 'whitespaces': [SKIP], |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 'lithium/*': [SKIP], | 789 'lithium/*': [SKIP], |
795 'third_party/*': [SKIP], | 790 'third_party/*': [SKIP], |
796 'tools/*': [SKIP], | 791 'tools/*': [SKIP], |
797 'apply': [SKIP], | 792 'apply': [SKIP], |
798 'math-*': [SKIP], | 793 'math-*': [SKIP], |
799 'unicode-test': [SKIP], | 794 'unicode-test': [SKIP], |
800 'whitespaces': [SKIP], | 795 'whitespaces': [SKIP], |
801 }], # variant == asm_wasm | 796 }], # variant == asm_wasm |
802 | 797 |
803 ] | 798 ] |
OLD | NEW |