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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 60 |
61 # TODO(mstarzinger): An arguments object materialized in the prologue can't | 61 # TODO(mstarzinger): An arguments object materialized in the prologue can't |
62 # be accessed indirectly. Either we drop that requirement or wait for support | 62 # be accessed indirectly. Either we drop that requirement or wait for support |
63 # from the deoptimizer to do that. | 63 # from the deoptimizer to do that. |
64 'arguments-indirect': [PASS, NO_VARIANTS], | 64 'arguments-indirect': [PASS, NO_VARIANTS], |
65 | 65 |
66 # TODO(mstarzinger): Sometimes the try-catch blacklist fails. | 66 # TODO(mstarzinger): Sometimes the try-catch blacklist fails. |
67 'debug-references': [PASS, NO_VARIANTS], | 67 'debug-references': [PASS, NO_VARIANTS], |
68 'regress/regress-263': [PASS, NO_VARIANTS], | 68 'regress/regress-263': [PASS, NO_VARIANTS], |
69 | 69 |
| 70 # TODO(mstarzinger): Some runtime functions expect Smi but get HeapNumber. |
| 71 'array-functions-prototype-misc': [PASS, NO_VARIANTS], |
| 72 'array-join': [PASS, NO_VARIANTS], |
| 73 'sparse-array-reverse': [PASS, NO_VARIANTS], |
| 74 |
| 75 # TODO(mstarzinger): Causes crash in generated code, needs investigation. |
| 76 'array-sort': [PASS, NO_VARIANTS], |
| 77 'dehoisted-array-index': [PASS, NO_VARIANTS], |
| 78 |
| 79 # TODO(mstarzinger/rossberg): Typer doesn't like contexts very much. |
| 80 'harmony/block-conflicts': [PASS, NO_VARIANTS], |
| 81 'harmony/block-for': [PASS, NO_VARIANTS], |
| 82 'harmony/block-leave': [PASS, NO_VARIANTS], |
| 83 'harmony/block-let-crankshaft': [PASS, NO_VARIANTS], |
| 84 'harmony/empty-for': [PASS, NO_VARIANTS], |
| 85 |
| 86 # TODO(mstarzinger): Needs more investigation. |
| 87 'polymorph-arrays': [PASS, NO_VARIANTS], |
| 88 'string-oom-concat': [PASS, NO_VARIANTS], |
| 89 'unbox-double-arrays': [PASS, NO_VARIANTS], |
| 90 'compiler/osr-warm': [PASS, NO_VARIANTS], |
| 91 'compiler/regress-3136962': [PASS, NO_VARIANTS], |
| 92 'harmony/proxies-json': [PASS, NO_VARIANTS], |
| 93 'regress/regress-3476': [PASS, NO_VARIANTS], |
| 94 'regress/regress-760-1': [PASS, NO_VARIANTS], |
| 95 'regress/regress-760-2': [PASS, NO_VARIANTS], |
| 96 'regress/regress-crbug-357052': [PASS, NO_VARIANTS], |
| 97 |
70 # Some tests are over-restrictive about object layout. | 98 # Some tests are over-restrictive about object layout. |
71 'array-constructor-feedback': [PASS, NO_VARIANTS], | 99 'array-constructor-feedback': [PASS, NO_VARIANTS], |
72 'array-feedback': [PASS, NO_VARIANTS], | 100 'array-feedback': [PASS, NO_VARIANTS], |
| 101 'elements-kind': [PASS, NO_VARIANTS], |
73 | 102 |
74 # Some tests are just too slow to run for now. | 103 # Some tests are just too slow to run for now. |
75 'bit-not': [PASS, NO_VARIANTS], | 104 'bit-not': [PASS, NO_VARIANTS], |
76 'json2': [PASS, NO_VARIANTS], | 105 'json2': [PASS, NO_VARIANTS], |
77 'packed-elements': [PASS, NO_VARIANTS], | 106 'packed-elements': [PASS, NO_VARIANTS], |
78 'whitespaces': [PASS, NO_VARIANTS], | 107 'whitespaces': [PASS, NO_VARIANTS], |
79 'compiler/osr-assert': [PASS, NO_VARIANTS], | 108 'compiler/osr-assert': [PASS, NO_VARIANTS], |
80 'regress/regress-2185-2': [PASS, NO_VARIANTS], | 109 'regress/regress-2185-2': [PASS, NO_VARIANTS], |
81 | 110 |
82 # Support for %GetFrameDetails is missing and requires checkpoints. | 111 # Support for %GetFrameDetails is missing and requires checkpoints. |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 'never-optimize': [SKIP], | 552 'never-optimize': [SKIP], |
524 'regress/regress-2185-2': [SKIP], | 553 'regress/regress-2185-2': [SKIP], |
525 'harmony/object-observe': [SKIP], | 554 'harmony/object-observe': [SKIP], |
526 'readonly': [SKIP], | 555 'readonly': [SKIP], |
527 'array-feedback': [SKIP], | 556 'array-feedback': [SKIP], |
528 | 557 |
529 # Deopt every n garbage collections collides with deopt every n times. | 558 # Deopt every n garbage collections collides with deopt every n times. |
530 'regress/regress-2653': [SKIP], | 559 'regress/regress-2653': [SKIP], |
531 }], # 'deopt_fuzzer == True' | 560 }], # 'deopt_fuzzer == True' |
532 ] | 561 ] |
OLD | NEW |