| 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): Causes crash in generated code, needs investigation. | |
| 71 'array-sort': [PASS, NO_VARIANTS], | |
| 72 'dehoisted-array-index': [PASS, NO_VARIANTS], | |
| 73 | |
| 74 # TODO(mstarzinger/rossberg): Typer doesn't like contexts very much. | 70 # TODO(mstarzinger/rossberg): Typer doesn't like contexts very much. |
| 75 'harmony/block-conflicts': [PASS, NO_VARIANTS], | 71 'harmony/block-conflicts': [PASS, NO_VARIANTS], |
| 76 'harmony/block-for': [PASS, NO_VARIANTS], | 72 'harmony/block-for': [PASS, NO_VARIANTS], |
| 77 'harmony/block-leave': [PASS, NO_VARIANTS], | 73 'harmony/block-leave': [PASS, NO_VARIANTS], |
| 78 'harmony/block-let-crankshaft': [PASS, NO_VARIANTS], | 74 'harmony/block-let-crankshaft': [PASS, NO_VARIANTS], |
| 79 'harmony/empty-for': [PASS, NO_VARIANTS], | 75 'harmony/empty-for': [PASS, NO_VARIANTS], |
| 80 | 76 |
| 81 # TODO(mstarzinger): Needs more investigation. | 77 # TODO(mstarzinger): Needs more investigation. |
| 82 'polymorph-arrays': [PASS, NO_VARIANTS], | 78 'polymorph-arrays': [PASS, NO_VARIANTS], |
| 83 'string-oom-concat': [PASS, NO_VARIANTS], | 79 'string-oom-concat': [PASS, NO_VARIANTS], |
| 84 'unbox-double-arrays': [PASS, NO_VARIANTS], | 80 'unbox-double-arrays': [PASS, NO_VARIANTS], |
| 85 'compiler/osr-warm': [PASS, NO_VARIANTS], | 81 'compiler/osr-warm': [PASS, NO_VARIANTS], |
| 86 'compiler/regress-3136962': [PASS, NO_VARIANTS], | |
| 87 'harmony/proxies-json': [PASS, NO_VARIANTS], | 82 'harmony/proxies-json': [PASS, NO_VARIANTS], |
| 88 'regress/regress-760-1': [PASS, NO_VARIANTS], | 83 'regress/regress-760-1': [PASS, NO_VARIANTS], |
| 89 'regress/regress-760-2': [PASS, NO_VARIANTS], | 84 'regress/regress-760-2': [PASS, NO_VARIANTS], |
| 90 'regress/regress-crbug-357052': [PASS, NO_VARIANTS], | 85 'regress/regress-crbug-357052': [PASS, NO_VARIANTS], |
| 91 | 86 |
| 92 # Some tests are over-restrictive about object layout. | 87 # Some tests are over-restrictive about object layout. |
| 93 'array-constructor-feedback': [PASS, NO_VARIANTS], | 88 'array-constructor-feedback': [PASS, NO_VARIANTS], |
| 94 'array-feedback': [PASS, NO_VARIANTS], | 89 'array-feedback': [PASS, NO_VARIANTS], |
| 95 'elements-kind': [PASS, NO_VARIANTS], | 90 'elements-kind': [PASS, NO_VARIANTS], |
| 96 | 91 |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 'never-optimize': [SKIP], | 553 'never-optimize': [SKIP], |
| 559 'regress/regress-2185-2': [SKIP], | 554 'regress/regress-2185-2': [SKIP], |
| 560 'harmony/object-observe': [SKIP], | 555 'harmony/object-observe': [SKIP], |
| 561 'readonly': [SKIP], | 556 'readonly': [SKIP], |
| 562 'array-feedback': [SKIP], | 557 'array-feedback': [SKIP], |
| 563 | 558 |
| 564 # Deopt every n garbage collections collides with deopt every n times. | 559 # Deopt every n garbage collections collides with deopt every n times. |
| 565 'regress/regress-2653': [SKIP], | 560 'regress/regress-2653': [SKIP], |
| 566 }], # 'deopt_fuzzer == True' | 561 }], # 'deopt_fuzzer == True' |
| 567 ] | 562 ] |
| OLD | NEW |