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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'regress/regress-2506': [PASS, FAIL], | 55 'regress/regress-2506': [PASS, FAIL], |
56 | 56 |
57 ############################################################################## | 57 ############################################################################## |
58 # TurboFan compiler failures. | 58 # TurboFan compiler failures. |
59 | 59 |
60 # TODO(mstarzinger): An arguments object materialized in the prologue can't | 60 # TODO(mstarzinger): An arguments object materialized in the prologue can't |
61 # be accessed indirectly. Either we drop that requirement or wait for support | 61 # be accessed indirectly. Either we drop that requirement or wait for support |
62 # from the deoptimizer to do that. | 62 # from the deoptimizer to do that. |
63 'arguments-indirect': [PASS, NO_VARIANTS], | 63 'arguments-indirect': [PASS, NO_VARIANTS], |
64 | 64 |
65 # TODO(rossberg): Typer doesn't like contexts very much. | |
66 'harmony/block-conflicts': [PASS, NO_VARIANTS], | |
67 'harmony/block-for': [PASS, NO_VARIANTS], | |
68 'harmony/block-leave': [PASS, NO_VARIANTS], | |
69 'harmony/block-let-crankshaft': [PASS, NO_VARIANTS], | |
70 'harmony/empty-for': [PASS, NO_VARIANTS], | |
71 | |
72 # TODO(verwaest): Some tests are over-restrictive about object layout. | 65 # TODO(verwaest): Some tests are over-restrictive about object layout. |
73 'array-constructor-feedback': [PASS, NO_VARIANTS], | 66 'array-constructor-feedback': [PASS, NO_VARIANTS], |
74 'array-feedback': [PASS, NO_VARIANTS], | 67 'array-feedback': [PASS, NO_VARIANTS], |
75 'compare-known-objects-slow': [PASS, NO_VARIANTS], | 68 'compare-known-objects-slow': [PASS, NO_VARIANTS], |
76 'elements-kind': [PASS, NO_VARIANTS], | 69 'elements-kind': [PASS, NO_VARIANTS], |
77 | 70 |
78 # Some tests are just too slow to run for now. | 71 # Some tests are just too slow to run for now. |
79 'bit-not': [PASS, NO_VARIANTS], | 72 'bit-not': [PASS, NO_VARIANTS], |
80 'json2': [PASS, NO_VARIANTS], | 73 'json2': [PASS, NO_VARIANTS], |
81 'packed-elements': [PASS, NO_VARIANTS], | 74 'packed-elements': [PASS, NO_VARIANTS], |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 'never-optimize': [SKIP], | 575 'never-optimize': [SKIP], |
583 'regress/regress-2185-2': [SKIP], | 576 'regress/regress-2185-2': [SKIP], |
584 'harmony/object-observe': [SKIP], | 577 'harmony/object-observe': [SKIP], |
585 'readonly': [SKIP], | 578 'readonly': [SKIP], |
586 'array-feedback': [SKIP], | 579 'array-feedback': [SKIP], |
587 | 580 |
588 # Deopt every n garbage collections collides with deopt every n times. | 581 # Deopt every n garbage collections collides with deopt every n times. |
589 'regress/regress-2653': [SKIP], | 582 'regress/regress-2653': [SKIP], |
590 }], # 'deopt_fuzzer == True' | 583 }], # 'deopt_fuzzer == True' |
591 ] | 584 ] |
OLD | NEW |