| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'compiler/shift-shr': [SKIP], | 56 'compiler/shift-shr': [SKIP], |
| 57 | 57 |
| 58 ############################################################################## | 58 ############################################################################## |
| 59 # TurboFan compiler failures. | 59 # TurboFan compiler failures. |
| 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. | |
| 67 'debug-references': [PASS, NO_VARIANTS], | |
| 68 'regress/regress-263': [PASS, NO_VARIANTS], | |
| 69 | |
| 70 # TODO(rossberg): Typer doesn't like contexts very much. | 66 # TODO(rossberg): Typer doesn't like contexts very much. |
| 71 'harmony/block-conflicts': [PASS, NO_VARIANTS], | 67 'harmony/block-conflicts': [PASS, NO_VARIANTS], |
| 72 'harmony/block-for': [PASS, NO_VARIANTS], | 68 'harmony/block-for': [PASS, NO_VARIANTS], |
| 73 'harmony/block-leave': [PASS, NO_VARIANTS], | 69 'harmony/block-leave': [PASS, NO_VARIANTS], |
| 74 'harmony/block-let-crankshaft': [PASS, NO_VARIANTS], | 70 'harmony/block-let-crankshaft': [PASS, NO_VARIANTS], |
| 75 'harmony/empty-for': [PASS, NO_VARIANTS], | 71 'harmony/empty-for': [PASS, NO_VARIANTS], |
| 76 | 72 |
| 77 # TODO(mstarzinger): Typed lowering screws up valueOf vs. toString order. | 73 # TODO(mstarzinger): Typed lowering screws up valueOf vs. toString order. |
| 78 'regress/regress-760-1': [PASS, NO_VARIANTS], | 74 'regress/regress-760-1': [PASS, NO_VARIANTS], |
| 79 'regress/regress-760-2': [PASS, NO_VARIANTS], | 75 'regress/regress-760-2': [PASS, NO_VARIANTS], |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 'never-optimize': [SKIP], | 549 'never-optimize': [SKIP], |
| 554 'regress/regress-2185-2': [SKIP], | 550 'regress/regress-2185-2': [SKIP], |
| 555 'harmony/object-observe': [SKIP], | 551 'harmony/object-observe': [SKIP], |
| 556 'readonly': [SKIP], | 552 'readonly': [SKIP], |
| 557 'array-feedback': [SKIP], | 553 'array-feedback': [SKIP], |
| 558 | 554 |
| 559 # Deopt every n garbage collections collides with deopt every n times. | 555 # Deopt every n garbage collections collides with deopt every n times. |
| 560 'regress/regress-2653': [SKIP], | 556 'regress/regress-2653': [SKIP], |
| 561 }], # 'deopt_fuzzer == True' | 557 }], # 'deopt_fuzzer == True' |
| 562 ] | 558 ] |
| OLD | NEW |